Ejemplo n.º 1
0
 public void Merge(FontOptions other)
 {
     if (other == null)
     {
         throw new ArgumentNullException("other");
     }
     CairoAPI.cairo_font_options_merge(handle, other.Handle);
 }
Ejemplo n.º 2
0
 bool Equals(FontOptions options)
 {
     return(options != null && CairoAPI.cairo_font_options_equal(Handle, options.Handle));
 }
Ejemplo n.º 3
0
Archivo: Cairo.cs Proyecto: viticm/pap2
		internal static extern void cairo_ft_font_options_substitute (FontOptions options, IntPtr pattern);
Ejemplo n.º 4
0
 internal static extern void cairo_ft_font_options_substitute(FontOptions options, IntPtr pattern);
Ejemplo n.º 5
0
		bool Equals (FontOptions options)
		{
			return options != null && CairoAPI.cairo_font_options_equal (Handle, options.Handle);
		}
Ejemplo n.º 6
0
		public void Merge (FontOptions other)
		{
			if (other == null)
				throw new ArgumentNullException ("other");
			CairoAPI.cairo_font_options_merge (handle, other.Handle);
		}