Enum FileIOMode
Defines the desired file I/O mode is when opening a new file.
Namespace: SharpAssimp
Assembly: SharpAssimp.dll
Syntax
public enum FileIOMode
Fields
Name | Description |
---|---|
Read | Open the file for reading. |
ReadBinary | Open the file for reading binary data from it. |
ReadText | Open the file for reading text data from it. |
Write | Open the file for writing. |
WriteBinary | Open the file for writing binary data to it. |
WriteText | Open the file for writing text data to it. |