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
Пример #1
0
 public void SelectFontFace(string family, FontSlant slant, FontWeight weight)
 {
     NativeMethods.cairo_select_font_face(state, family, slant, weight);
 }
Пример #2
0
 public void SelectFontFace(string family, FontSlant slant, FontWeight weight)
 {
     CheckDisposed();
     NativeMethods.cairo_select_font_face(handle, family, slant, weight);
 }