Provides a set of constants that specify the data type of the values that a property, choice list, or column definition can hold. These constants are returned by the DataType property. When creating a choice list, you must set its DataType property to either LONG or STRING.

Namespace:  FileNet.Api.Constants
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Public Enumeration TypeID
C#
public enum TypeID
Visual C++
public enum class TypeID
JavaScript
FileNet.Api.Constants.TypeID = function();
FileNet.Api.Constants.TypeID.createEnum('FileNet.Api.Constants.TypeID', false);

ToggleMembers

TypeMember nameDescription
DOUBLE
Specifies a double (Float64) data type. Represents an IEEE-standard 64-bit floating-point number, which has a value ranging from -1.79769313486232e308 to +1.79769313486232e308.
GUID
Specifies a GUID (ID) data type. Represents a Globally Unique Identifier (GUID) or Universally Unique Identifier (UUID), which is a unique 128-bit number. When converted to a string, a GUID is typically depicted as a string of 32 hexadecimal characters enclosed by brackets in the following format: {XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}, for example, {3F2504E0-4F89-11D3-9A0C-0305E82C3301}.
BOOLEAN
Specifies a Boolean data type. Represents Boolean data having a value of true or false.
BINARY
Specifies a binary data type. Represents binary data by using an array of unsigned 8-bit bytes.
OBJECT
Specifies an object data type. Represents an object that is instantiated from a Content Engine class.
DATE
Specifies a DateTime data type. Represents an instance in time as a date and a time of day in accordance with ISO 8601.
LONG
Specifies an integer data type. Represents a signed 32-bit integer, which has a value ranging from -2,147, 483,648 to +2,147,483,647.
STRING
Specifies a string data type. Represents text consisting of a sequential collection of 16-bit Unicode characters.

ToggleSee Also