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

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

private cairo_append_path ( IntPtr cr, IntPtr path ) : void
cr System.IntPtr
path System.IntPtr
Результат void
        internal static extern void cairo_append_path(IntPtr cr, IntPtr path);

Usage Example

Пример #1
0
 public void AppendPath(Path path)
 {
     NativeMethods.cairo_append_path(state, path.handle);
 }
All Usage Examples Of Cairo.NativeMethods::cairo_append_path
NativeMethods