Пример #1
0
 public void Merge(FontOptions other)
 {
     if (other == null)
     {
         throw new ArgumentNullException("other");
     }
     CairoAPI.cairo_font_options_merge(handle, other.Handle);
 }
Пример #2
0
 bool Equals(FontOptions options)
 {
     return(options != null && CairoAPI.cairo_font_options_equal(Handle, options.Handle));
 }
Пример #3
0
		internal static extern void cairo_ft_font_options_substitute (FontOptions options, IntPtr pattern);
Пример #4
0
 internal static extern void cairo_ft_font_options_substitute(FontOptions options, IntPtr pattern);
Пример #5
0
		bool Equals (FontOptions options)
		{
			return options != null && CairoAPI.cairo_font_options_equal (Handle, options.Handle);
		}
Пример #6
0
		public void Merge (FontOptions other)
		{
			if (other == null)
				throw new ArgumentNullException ("other");
			CairoAPI.cairo_font_options_merge (handle, other.Handle);
		}