'Declaration
Public Function ZoomArea( _ ByVal Left As Integer, _ ByVal Top As Integer, _ ByVal Width As Integer, _ ByVal Height As Integer _ ) As GdPictureStatus
public GdPictureStatus ZoomArea( int Left, int Top, int Width, int Height )
public function ZoomArea( Left: Integer; Top: Integer; Width: Integer; Height: Integer ): GdPictureStatus;
public function ZoomArea( Left : int, Top : int, Width : int, Height : int ) : GdPictureStatus;
public: GdPictureStatus ZoomArea( int Left, int Top, int Width, int Height )
public: GdPictureStatus ZoomArea( int Left, int Top, int Width, int Height )
Parameters
- Left
- The horizontal (left) coordinate of the top-left corner of the required area on the displayed page, in pixels. The origin is set to the top-left corner of the displayed page.
- Top
- The vertical (top) coordinate of the top-left corner of the required area on the displayed page, in pixels. The origin is set to the top-left corner of the displayed page.
- Width
- The width of the required area, in pixels.
- Height
- The height of the required area, in pixels.
Return Value
A member of the GdPictureStatus enumeration. If the method has been successfully followed, then the return value is GdPictureStatus.OK.
We strongly recommend always checking this status first.