Cairo.FontFace.FontFace C# (CSharp) Метод

FontFace() публичный Метод

public FontFace ( IntPtr handle, bool owned ) : System
handle System.IntPtr
owned bool
Результат System
        public FontFace(IntPtr handle, bool owned)
        {
            if (handle == IntPtr.Zero)
                throw new ArgumentException ("handle should not be NULL", "handle");

            this.handle = handle;
            if (!owned)
                NativeMethods.cairo_font_face_reference (handle);
            if (CairoDebug.Enabled)
                CairoDebug.OnAllocated (handle);
        }