CustomColumn Class |
Namespace: Telogis.GeoBase
The CustomColumn type exposes the following members.
Name | Description | |
---|---|---|
CustomColumn | Initializes a new instance of the CustomColumn class |
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
Name |
The user-defined name of the column.
| |
Type |
A string describing the data type of the column.
A data type identifier, one of: String, DateTime, Bool, Int, Float, Double. All identifier strings are case-sensitive. |
Related articles: Data Query Concept.
CustomColumn pylonType = new CustomColumn(); pylonType.Name = "Type of pylon"; // user-defined label pylonType.Type = "String"; // ^^ the type of data in the column, one of: // "String", "DateTime", "Bool", "Int", "Float", "Double"