Click or drag to resize

StdFileOpenMode Enumeration

File open mode for StdFile class.

Namespace:  pdftron.Filters
Assembly:  pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax
public enum StdFileOpenMode
Members
  Member nameValueDescription
e_read_mode0 Opens the file for reading. An exception is thrown if the file doesn't exist.
e_write_mode1 Opens an empty file for writing. If the given file exists, its contents are destroyed
e_append_mode2 Opens for reading and appending. Creates the file first if it doesn't exist.
See Also