A unique image identifier of the GdPicture image representing the multipage TIFF image.





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / TiffIsEditableMultiPage Method

TiffIsEditableMultiPage Method (GdPictureImaging)

In This Topic
Checks whether the specified image, represented by its unique image identifier, is an editable multipage TIFF image, that means it has not been opened as read-only.
Syntax
'Declaration
 
Public Function TiffIsEditableMultiPage( _
   ByVal ImageID As Integer _
) As Boolean
public bool TiffIsEditableMultiPage( 
   int ImageID
)
public function TiffIsEditableMultiPage( 
    ImageID: Integer
): Boolean; 
public function TiffIsEditableMultiPage( 
   ImageID : int
) : boolean;
public: bool TiffIsEditableMultiPage( 
   int ImageID
) 
public:
bool TiffIsEditableMultiPage( 
   int ImageID
) 

Parameters

ImageID
A unique image identifier of the GdPicture image representing the multipage TIFF image.

Return Value

true if the specified image is an editable multipage TIFF image, means not read-only; 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