Skip to main content
A newer version of this page is available. .

CustomFieldMappingBase<T>.ValueType Property

Gets or sets the value type of a custom field.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.2.Core.dll

Declaration

[DefaultValue(FieldValueType.Object)]
public FieldValueType ValueType { get; set; }

Property Value

Type Default Description
FieldValueType **Object**

A FieldValueType enumeration member, specifying the type of a custom field.

Available values:

Name Description
Integer

Indicates that the data column contains integer values (the Int32 type).

Decimal

Indicates that the data column contains decimal values (the Decimal type).

DateTime

Indicates that the data column contains date/time values (the DateTime type).

String

Indicates that the data column contains string values (the String type).

Boolean

Indicates that the mapped data column contains Boolean values (the Boolean type).

Object

Indicates that the data column contains values of any type.

See Also