コード例 #1
0
ファイル: FontOptions.cs プロジェクト: uvbs/FullSource
 public void Merge(FontOptions other)
 {
     if (other == null)
     {
         throw new ArgumentNullException("other");
     }
     CairoAPI.cairo_font_options_merge(handle, other.Handle);
 }