Cairo.NativeMethods.cairo_select_font_face C# (CSharp) Метод

cairo_select_font_face() приватный Метод

private cairo_select_font_face ( IntPtr cr, string family, FontSlant slant, FontWeight weight ) : void
cr IntPtr
family string
slant FontSlant
weight FontWeight
Результат void
        internal static extern void cairo_select_font_face(IntPtr cr, string family, FontSlant slant, FontWeight weight);

Usage Example

Пример #1
0
 public void SelectFontFace(string family, FontSlant slant, FontWeight weight)
 {
     NativeMethods.cairo_select_font_face(state, family, slant, weight);
 }
All Usage Examples Of Cairo.NativeMethods::cairo_select_font_face
NativeMethods