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

MapItemAttributeMapping.ValueType Property

Gets or sets the mapping’s map item attribute value type.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v19.1.dll

Declaration

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

Property Value

Type Default Description
FieldValueType **Object**

A FieldValueType enumeration value which represents the map item attribute type.

Available values:

Name Description
Integer

Indicates that the attribute field of a map item contains Integer values (the Int32 type).

Decimal

Indicates that the attribute field of a map item contains Decimal values (the Decimal type).

DateTime

Indicates that the attribute field of a map item contains Date Time values (the DateTime type).

String

Indicates that the attribute field of a map item contains String values (the String type).

Boolean

Indicates that the attribute field of a map item contains Boolean values (the Boolean type).

Object

Indicates that the attribute field of a map item contains values of the Object type (the Object type).

Remarks

See the Provide Data Using Vector Item Attributes to learn more.

See Also