public void Merge(FontOptions other) { if (other == null) { throw new ArgumentNullException("other"); } CairoAPI.cairo_font_options_merge(handle, other.Handle); }
internal static extern void cairo_ft_font_options_substitute(FontOptions options, IntPtr pattern);
bool Equals(FontOptions options) { return(options != null && CairoAPI.cairo_font_options_equal(Handle, options.Handle)); }