'Declaration
Public Function MergePages( _ ByVal Pages As IEnumerable(Of Integer), _ ByVal RemovePages As Boolean _ ) As GdPictureStatus
public GdPictureStatus MergePages( IEnumerable<int> Pages, bool RemovePages )
public function MergePages( Pages: IEnumerable; RemovePages: Boolean ): GdPictureStatus;
public function MergePages( Pages : IEnumerable, RemovePages : boolean ) : GdPictureStatus;
public: GdPictureStatus MergePages( IEnumerable<int>* Pages, bool RemovePages )
public: GdPictureStatus MergePages( IEnumerable<int>^ Pages, bool RemovePages )
Parameters
- Pages
- An array of the integer values specifying page numbers that shall be merged.
- RemovePages
- Set this parameter to true if you want to remove specified pages after merging, otherwise set it to false.
First page in list will not be deleted even if this parameter is set to true.
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.