MapItemAttributeMapping.ValueType Property
Gets or sets the mapping’s map item attribute value type.
Namespace: DevExpress.XtraMap
Assembly: DevExpress.XtraMap.v24.2.dll
Declaration
[DefaultValue(FieldValueType.Object)]
[DXCategory("Behavior")]
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.