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

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

private cairo_region_subtract ( IntPtr dst, IntPtr other ) : Status
dst IntPtr
other IntPtr
Результат Status
        internal static extern Status cairo_region_subtract(IntPtr dst, IntPtr other);

Usage Example

Пример #1
0
 public Status Subtract(Region other)
 {
     CheckDisposed();
     return(NativeMethods.cairo_region_subtract(Handle, other.Handle));
 }
NativeMethods