ImageMagick.DrawingWand.NativeDrawingWand.Rectangle C# (CSharp) Метод

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

public Rectangle ( double upperLeftX, double upperLeftY, double lowerRightX, double lowerRightY ) : void
upperLeftX double
upperLeftY double
lowerRightX double
lowerRightY double
Результат void
      public void Rectangle(double upperLeftX, double upperLeftY, double lowerRightX, double lowerRightY)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.DrawingWand_Rectangle(Instance, upperLeftX, upperLeftY, lowerRightX, lowerRightY, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.DrawingWand_Rectangle(Instance, upperLeftX, upperLeftY, lowerRightX, lowerRightY, out exception);
        #endif
        CheckException(exception);
      }
      public void Rotation(double angle)