The
Feature is the class that is used throughout the framework in the context of results display, querying, and data visualizers. A feature typically represents a row of data from a table with an associated geometry.
Properties
| Name | Type | Description |
|---|
| Attributes | IDictionary<AttributeDescription, object> | The attributes and values for the feature. |
| DisplayAttributeKey | AttributeDescription | The AttributeDescription object describing the attribute with the display value for this feature. |
| DisplayValues | IDictionary<string, string> | A dictionary with the key as the attribute display name and the value as the attribute display value. |
| FeatureType | FeatureType | This is the FeatureType for the instance of the feature. |
| Geometry | Geometry | Geometry for a feature if it contains a spatial component. |
| Id | object | This the id for the feature. |
| IdAttributeKey | AttributeDescription | The AttributeDescription object describing the id attribute for this feature. |
| IsSelected | bool | Specifies if the feature is currently selected. |
| this[AttributeDescription index] | object | Gets the value of an attribute by the AttributeDescription. |
| this[string index] | object | Gets the value of an attribute by the Attribute Name. |
See Also