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.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

Member NameDescription
READ_WRITESpecifies that a property is read/write; you can set its value at any time.
READ_ONLYSpecifies that a property is read-only; only the server can set its value.
SETTABLE_ONLY_ON_CREATESpecifies 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_CHECKINSpecifies that you can only set the value of a property before you check in the object to which it belongs.

See Also