Enumeration defining the access modes for opening a CAD database.
The mode with higher value is compatible with modes with lower values. For example:
const mode = AcEdOpenMode.Write;if (mode >= AcEdOpenMode.Review) { // Can perform review operations} Copy
const mode = AcEdOpenMode.Write;if (mode >= AcEdOpenMode.Review) { // Can perform review operations}
Read-only mode: allows viewing but no modifications
Review mode: allows viewing and reviewing, compatible with Read
Write mode: allows full read/write access, compatible with Review and Read
Enumeration defining the access modes for opening a CAD database.
The mode with higher value is compatible with modes with lower values. For example:
Example