Provides a set of constants that specify when the value of a property can be set.
These constants are used by the Settability property.
Namespace:
FileNet.Api.ConstantsAssembly: FileNet.Api (in FileNet.Api.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Enumeration PropertySettability |
C# |
---|
public enum PropertySettability |
Visual C++ |
---|
public enum class PropertySettability |
JavaScript |
---|
FileNet.Api.Constants.PropertySettability = function(); FileNet.Api.Constants.PropertySettability.createEnum('FileNet.Api.Constants.PropertySettability', false); |
Members
Type | Member name | Description |
---|---|---|
SETTABLE_ONLY_BEFORE_CHECKIN |
Specifies that you can only set the value of a property before you check in the object to which it belongs.
| |
SETTABLE_ONLY_ON_CREATE |
Specifies that you can only set the value of a property when you create the object to which it belongs.
Once you save the object for the first time, the property becomes read-only.
| |
READ_WRITE |
Specifies that a property is read/write; you can set its value at any time.
| |
READ_ONLY |
Specifies that a property is read-only; only the server can set its value.
|