Cairo.ScaledFont.ScaledFont C# (CSharp) Method

ScaledFont() private method

private ScaledFont ( IntPtr handle, bool owner ) : System
handle System.IntPtr
owner bool
return System
        internal ScaledFont(IntPtr handle, bool owner)
        {
            if (handle == IntPtr.Zero)
                throw new ArgumentException ("handle should not be NULL", "handle");

            this.handle = handle;
            if (!owner)
                NativeMethods.cairo_scaled_font_reference (handle);
            if (CairoDebug.Enabled)
                CairoDebug.OnAllocated (handle);
        }

Same methods

ScaledFont::ScaledFont ( FontFace fontFace, Matrix matrix, Matrix ctm, FontOptions options ) : System