'Declaration
Public Function TiffMovePage( _ ByVal ImageID As Integer, _ ByVal PageNo As Integer, _ ByVal Destination As Integer _ ) As GdPictureStatus
public GdPictureStatus TiffMovePage( int ImageID, int PageNo, int Destination )
public function TiffMovePage( ImageID: Integer; PageNo: Integer; Destination: Integer ): GdPictureStatus;
public function TiffMovePage( ImageID : int, PageNo : int, Destination : int ) : GdPictureStatus;
public: GdPictureStatus TiffMovePage( int ImageID, int PageNo, int Destination )
public: GdPictureStatus TiffMovePage( int ImageID, int PageNo, int Destination )
Parameters
- ImageID
- A unique image identifier of the GdPicture image representing the editable multipage TIFF image.
- PageNo
- The page number of a required page you want to move. It must be a value from 1 to GdPictureImaging.TiffGetPageCount.
- Destination
- The page number of a destination page. It must be a value from 1 to GdPictureImaging.GetPageCount.
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.