Ejemplo n.º 1
0
 public void Merge(FontOptions other)
 {
     if (other == null)
     {
         throw new ArgumentNullException("other");
     }
     NativeMethods.cairo_font_options_merge(handle, other.Handle);
 }
Ejemplo n.º 2
0
 internal static extern void cairo_ft_font_options_substitute(FontOptions options, IntPtr pattern);
Ejemplo n.º 3
0
 bool Equals(FontOptions options)
 {
     return(options != null && NativeMethods.cairo_font_options_equal(Handle, options.Handle));
 }
Ejemplo n.º 4
0
 public ScaledFont(FontFace fontFace, Matrix matrix, Matrix ctm, FontOptions options)
     : this(NativeMethods.cairo_scaled_font_create(fontFace.Handle, matrix, ctm, options.Handle), true)
 {
 }