Fix message
[mono.git] / mcs / class / Mono.Cairo / Mono.Cairo / FontFace.cs
1 using System;
2
3 namespace Cairo
4 {
5         public class FontFace
6         {
7                 IntPtr handle;
8
9                 public FontFace (IntPtr handle)
10                 {
11                         this.handle = handle;
12                 }
13
14                 public IntPtr Handle {
15                         get { return handle; }
16                 }
17
18 #if CAIRO_1_2
19                 public FontType FontType {
20                         get { return CairoAPI.cairo_font_face_get_type (handle); }
21                 }
22 #endif
23         }
24 }
25