Set this parameter to true if you want to load files for reading and writing, otherwise set it to false to load them as read-only.





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / TiffOpenMultiPageForWrite Method

TiffOpenMultiPageForWrite Method (GdPictureImaging)

In This Topic
Allows you to control the way of creating and loading multipage TIFF image files.

This class loads multipage TIFF images in read-write mode using the CreateGdPictureImageFrom... methods by default. Setting the WriteAccess parameter to false before loading a file allows you to create multipage TIFF images as read-only.

Syntax
'Declaration

 

Public Sub TiffOpenMultiPageForWrite( _

   ByVal WriteAccess As Boolean _

) 
public void TiffOpenMultiPageForWrite( 

   bool WriteAccess

)
public procedure TiffOpenMultiPageForWrite( 

    WriteAccess: Boolean

); 
public function TiffOpenMultiPageForWrite( 

   WriteAccess : boolean

);
public: void TiffOpenMultiPageForWrite( 

   bool WriteAccess

) 
public:

void TiffOpenMultiPageForWrite( 

   bool WriteAccess

) 

Parameters

WriteAccess
Set this parameter to true if you want to load files for reading and writing, otherwise set it to false to load them as read-only.
Remarks
Please ensure you are using this method before loading the file, otherwise it will not take into account.
See Also