A unique image identifier of the GdPicture image representing a required TIFF image.





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / TiffIsMultiPage Method

TiffIsMultiPage Method (GdPictureImaging)

In This Topic
Checks whether the specified image, represented by its unique image identifier, is a multipage TIFF image, either a read-only or an editable one.
Syntax
'Declaration
 
Public Function TiffIsMultiPage( _
   ByVal ImageID As Integer _
) As Boolean
public bool TiffIsMultiPage( 
   int ImageID
)
public function TiffIsMultiPage( 
    ImageID: Integer
): Boolean; 
public function TiffIsMultiPage( 
   ImageID : int
) : boolean;
public: bool TiffIsMultiPage( 
   int ImageID
) 
public:
bool TiffIsMultiPage( 
   int ImageID
) 

Parameters

ImageID
A unique image identifier of the GdPicture image representing a required TIFF image.

Return Value

true if the specified image is a multipage TIFF image, otherwise false. The GetStat method can be subsequently used to determine if this method has been successful.
Remarks
It is recommend to use the GetStat method to identify the specific reason for the method's failure, if any.
See Also