'Declaration
Public Function CopyRegionToClipboard( _ ByVal ImageID As Integer, _ ByVal SrcLeft As Integer, _ ByVal SrcTop As Integer, _ ByVal Width As Integer, _ ByVal Height As Integer _ ) As GdPictureStatus
public GdPictureStatus CopyRegionToClipboard( int ImageID, int SrcLeft, int SrcTop, int Width, int Height )
public function CopyRegionToClipboard( ImageID: Integer; SrcLeft: Integer; SrcTop: Integer; Width: Integer; Height: Integer ): GdPictureStatus;
public function CopyRegionToClipboard( ImageID : int, SrcLeft : int, SrcTop : int, Width : int, Height : int ) : GdPictureStatus;
Parameters
- ImageID
- A unique image identifier of the GdPicture image representing the image in use.
- SrcLeft
- The horizontal (X) coordinate of the top left position of the required region, in pixels.
- SrcTop
- The vertical (Y) coordinate of the top left position of the required region, in pixels.
- Width
- The width of the required region, in pixels.
- Height
- The height of the required region, 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.