IPropertyType extends IEnum
Defines an enumeration of property data types.
Table of Contents
TBOOLEAN | A boolean | 'bool' |
---|---|---|
TINTEGER | An integer | 'int' |
TFLOAT | A decimal | 'float' |
TSTRING | A string | 'string' |
TENUM | An enum. | 'enum' |
TRTENUM | A runtime enum instance. | 'rtenum' |
TARRAY | An array property | 'array' |
TSET | A set Column must use a class implementing the ISet interface | 'set' |
TDATE | A date | 'date' |
TMONEY | Currency. | 'money' |
TMODEL | A property backed by some IModel instance | 'model' |
TOBJECT | A property that only accepts instances of a specified object type | 'object' |
Constants
TBOOLEAN
A boolean
public
mixed
$TBOOLEAN
= 'bool'
TINTEGER
An integer
public
mixed
$TINTEGER
= 'int'
TFLOAT
A decimal
public
mixed
$TFLOAT
= 'float'
TSTRING
A string
public
mixed
$TSTRING
= 'string'
TENUM
An enum.
public
mixed
$TENUM
= 'enum'
TRTENUM
A runtime enum instance.
public
mixed
$TRTENUM
= 'rtenum'
TARRAY
An array property
public
mixed
$TARRAY
= 'array'
TSET
A set Column must use a class implementing the ISet interface
public
mixed
$TSET
= 'set'
TDATE
A date
public
mixed
$TDATE
= 'date'
TMONEY
Currency.
public
mixed
$TMONEY
= 'money'
TMODEL
A property backed by some IModel instance
public
mixed
$TMODEL
= 'model'
TOBJECT
A property that only accepts instances of a specified object type
public
mixed
$TOBJECT
= 'object'