'Declaration
Public Function CopyRegionToClipboard( _ ByVal SrcLeft As Integer, _ ByVal SrcTop As Integer, _ ByVal Width As Integer, _ ByVal Height As Integer _ ) As GdPictureStatus
public GdPictureStatus CopyRegionToClipboard( int SrcLeft, int SrcTop, int Width, int Height )
public function CopyRegionToClipboard( SrcLeft: Integer; SrcTop: Integer; Width: Integer; Height: Integer ): GdPictureStatus;
public function CopyRegionToClipboard( SrcLeft : int, SrcTop : int, Width : int, Height : int ) : GdPictureStatus;
public: GdPictureStatus CopyRegionToClipboard( int SrcLeft, int SrcTop, int Width, int Height )
public: GdPictureStatus CopyRegionToClipboard( int SrcLeft, int SrcTop, int Width, int Height )
Parameters
- SrcLeft
- The horizontal (X) coordinate (0-based) of the top left point, in pixels, of the copied region's rectangle, related to the current page.
- SrcTop
- The vertical (Y) coordinate (0-based) of the top left point, in pixels, of the copied region's rectangle, related to the current page.
- Width
- The width, in pixels, of the region's rectangle.
- Height
- The height, in pixels, of the region's rectangle.
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.