ImageMagick.PixelCollection.NativePixelCollection.GetArea C# (CSharp) Метод

GetArea() публичный Метод

public GetArea ( int x, int y, int width, int height ) : IntPtr
x int
y int
width int
height int
Результат System.IntPtr
      public IntPtr GetArea(int x, int y, int width, int height)
      {
        IntPtr exception = IntPtr.Zero;
        IntPtr result;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        result = NativeMethods.X64.PixelCollection_GetArea(Instance, (UIntPtr)x, (UIntPtr)y, (UIntPtr)width, (UIntPtr)height, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        result = NativeMethods.X86.PixelCollection_GetArea(Instance, (UIntPtr)x, (UIntPtr)y, (UIntPtr)width, (UIntPtr)height, out exception);
        #endif
        CheckException(exception);
        return result;
      }
      public void SetArea(int x, int y, int width, int height, QuantumType[] values, int length)