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

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

private cairo_show_text ( IntPtr cr, byte utf8 ) : void
cr IntPtr
utf8 byte
Результат void
        internal static extern void cairo_show_text(IntPtr cr, byte[] utf8);

Usage Example

Пример #1
0
 public void ShowText(string str)
 {
     NativeMethods.cairo_show_text(state, str);
 }
All Usage Examples Of Cairo.NativeMethods::cairo_show_text
NativeMethods