示例#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
文件: Cairo.cs 项目: viticm/pap2
		internal static extern void cairo_ft_font_options_substitute (FontOptions options, IntPtr pattern);
示例#4
0
文件: Cairo.cs 项目: weimingtom/pap2
 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);
		}