UpdateType
Update type enumeration.
| Name | Description | Value |
|---|---|---|
| UPDATE_TYPE_NORMAL | Normal, user-settable property. | 0 |
| UPDATE_TYPE_SET_BY_SERVER | A property that is automatically set and updated by the server. If a client supplies this type of properties in set operations, they are ignored by the server. | 1 |
| UPDATE_TYPE_SET_BY_CLIENT_CODE | A property that is automatically set and updated by the client. The only difference to type eUpdateTypeNormal is that the user should not be prompted to enter the value of this type of property. | 2 |
Runtime Access
This enumeration is available at runtime on the MFiles global object under the VaultEnums namespace. Access enum values using MFiles.VaultEnums.UpdateType.<value>.
Example:
const value = MFiles.VaultEnums.UpdateType.UPDATE_TYPE_NORMAL;
See also: MFiles Global Object