Cairo.FontFace.Lookup C# (CSharp) Method

Lookup() static private method

static private Lookup ( IntPtr handle, bool owner ) : FontFace
handle System.IntPtr
owner bool
return FontFace
        internal static FontFace Lookup(IntPtr handle, bool owner)
        {
            if (handle == IntPtr.Zero)
                return null;
            return new FontFace (handle, owner);
        }