'DeclarationPublic Overloads Function TiffInsertPageFromFile( _ ByVal EditableTiffID As Integer, _ ByVal Position As Integer, _ ByVal FilePath As String, _ ByVal Select As Boolean _ ) As GdPictureStatus
public GdPictureStatus TiffInsertPageFromFile( int EditableTiffID, int Position, string FilePath, bool Select )
public function TiffInsertPageFromFile( EditableTiffID: Integer; Position: Integer; FilePath: String; Select: Boolean ): GdPictureStatus;
public function TiffInsertPageFromFile( EditableTiffID : int, Position : int, FilePath : String, Select : boolean ) : GdPictureStatus;
public: GdPictureStatus TiffInsertPageFromFile( int EditableTiffID, int Position, string* FilePath, bool Select )
public: GdPictureStatus TiffInsertPageFromFile( int EditableTiffID, int Position, String^ FilePath, bool Select )
Parameters
- EditableTiffID
 - A unique image identifier of the GdPicture image representing the editable multipage TIFF image, in which the new page will be inserted.
 - Position
 - The required position of the page to insert, that means the page number for the newly inserted page. It must be a value from 1 to GdPictureImaging.TiffGetPageCount.
 - FilePath
 - The file path of the image file, which will be inserted at the given page position of an editable multipage TIFF image. 
Supported input document formats are listed here.
 - Select
 - Specifies if the added page must be subsequently selected.
 
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.
