Ejemplo n.º 1
0
Archivo: Cairo.cs Proyecto: viticm/pap2
		internal static extern void cairo_scaled_font_glyph_extents (IntPtr scaled_font, IntPtr glyphs, int num_glyphs, TextExtents extents);
Ejemplo n.º 2
0
Archivo: Cairo.cs Proyecto: viticm/pap2
		internal static extern void cairo_text_extents (IntPtr cr, string utf8, ref TextExtents extents);
Ejemplo n.º 3
0
Archivo: Cairo.cs Proyecto: viticm/pap2
		internal static extern void cairo_glyph_extents (IntPtr cr, IntPtr glyphs, int num_glyphs, TextExtents extents);
Ejemplo n.º 4
0
Archivo: Cairo.cs Proyecto: viticm/pap2
		internal static extern void cairo_scaled_font_extents (IntPtr scaled_font, TextExtents extents);
Ejemplo n.º 5
0
 internal static extern void cairo_text_extents(IntPtr cr, string utf8, ref TextExtents extents);
Ejemplo n.º 6
0
 internal static extern void cairo_scaled_font_glyph_extents(IntPtr scaled_font, IntPtr glyphs, int num_glyphs, TextExtents extents);
Ejemplo n.º 7
0
 internal static extern void cairo_scaled_font_extents(IntPtr scaled_font, TextExtents extents);
Ejemplo n.º 8
0
 internal static extern void cairo_glyph_extents(IntPtr cr, IntPtr glyphs, int num_glyphs, TextExtents extents);
Ejemplo n.º 9
0
 public TextExtents TextExtents(string utf8)
 {
     TextExtents extents = new TextExtents();
     CairoAPI.cairo_text_extents(state, utf8, ref extents);
     return extents;
 }