LockTypeEnum
LockTypeEnum enumeration constants are used to denote the state of the document.
typedef enum {
LT_None,
LT_Read,
LT_ReadWrite
} LockTypeEnum;
Elements
| Name | Description |
|---|---|
| LT_None | The document is closed. Not all the properties and methods of such document are available. |
| LT_Read | The document is open for reading. You can view the structure and parameters of the document, but cannot edit them. |
| LT_ReadWrite | The document is open for reading and writing. You can edit its structure, parameters, etc. |
Used in
See also
8/15/2023 1:19:30 PM