Provides a set of constants that specify the type of data that a
object represents. These constants are used in conjunction with the
property to specify whether a given
object represents an integer-type choice item, a string-type choice item, a group node for a nested collection of integer-type
objects, or a group node for a nested collection of string-type
objects.
Namespace: FileNet.Api.Constants
Assembly: FileNet.Api (in filenet.api.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Enum ChoiceType |
C# |
---|
public enum ChoiceType |
C++ |
---|
public enum class ChoiceType |
J# |
---|
public enum ChoiceType |
JScript |
---|
public enum ChoiceType |
Members
Description | |
---|---|
MIDNODE_STRING | Specifies a object that acts as a group node for a nested collection of string-type objects. This collection is represented by a object returned by the property. Each object in this collection must represent either a string-type choice item or a group node for a nested collection of string-type objects. |
INTEGER | Specifies a object that represents an integer-type choice item. This type of choice item stores a single integer value with its property. An integer-type item must belong to an integer-type choice list and the value of its property can only be assigned to an integer-valued property that has been associated with this choice list. |
MIDNODE_INTEGER | Specifies a object that acts as a group node for a nested collection of integer-type objects. This collection is represented by a object returned by the property. Each object in this collection must represent either an integer-type choice item or a group node for a nested collection of integer-type objects. |
STRING | Specifies a object that represents a string-type choice item. This type of choice item stores a single string value with its property. A string-type choice item must belong to a string-type choice list and the value of its property can only be assigned to a string-valued property that has been associated with this choice list. |