Provides a set of constants that specify when the value of a property can be set. These constants are used by the
property.
Namespace: FileNet.Api.Constants
Assembly: FileNet.Api (in filenet.api.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Enum PropertySettability |
C# |
---|
public enum PropertySettability |
C++ |
---|
public enum class PropertySettability |
J# |
---|
public enum PropertySettability |
JScript |
---|
public enum PropertySettability |
Members
Description | |
---|---|
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. |
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. |
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. |