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

cairo_font_options_merge() приватный Метод

private cairo_font_options_merge ( IntPtr options, IntPtr other ) : void
options System.IntPtr
other System.IntPtr
Результат void
        internal static extern void cairo_font_options_merge(IntPtr options, IntPtr other);

Usage Example

Пример #1
0
 public void Merge(FontOptions other)
 {
     if (other == null)
     {
         throw new ArgumentNullException("other");
     }
     NativeMethods.cairo_font_options_merge(handle, other.Handle);
 }
NativeMethods