True to load the multiframe gif images for reading and writing, else False to open them as read-only.





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / GifOpenMultiFrameForWrite Method

GifOpenMultiFrameForWrite Method (GdPictureImaging)

In This Topic
This method controls the way of multiframe gif image loading. By default, the class loads multiframe gif images in read-write mode through the following methods: CreateGdPictureImageFromByteArray CreateGdPictureImageFromFile CreateGdPictureImageFromStream CreateGdPictureImageFromString CreateGdPictureImageFromFTP CreateGdPictureImageFromHTTP If you want to open multiframe gif images as read-only, you should this method using False for the WriteAccess parameter.
Syntax
'Declaration

 

Public Sub GifOpenMultiFrameForWrite( _

   ByVal WriteAccess As Boolean _

) 
public void GifOpenMultiFrameForWrite( 

   bool WriteAccess

)
public procedure GifOpenMultiFrameForWrite( 

    WriteAccess: Boolean

); 
public function GifOpenMultiFrameForWrite( 

   WriteAccess : boolean

);
public: void GifOpenMultiFrameForWrite( 

   bool WriteAccess

) 
public:

void GifOpenMultiFrameForWrite( 

   bool WriteAccess

) 

Parameters

WriteAccess
True to load the multiframe gif images for reading and writing, else False to open them as read-only.
See Also