CustomIndex Class |
Namespace: Telogis.GeoBase
The CustomIndex type exposes the following members.
Name | Description | |
---|---|---|
CustomIndex | Initializes a new instance of the CustomIndex 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 | |
---|---|---|
Column |
The user-defined custom column's name.
| |
Name |
The user-defined name of the index.
| |
TableName |
The user-defined name of the table.
| |
Type |
The type of data to index.
|
Related articles: Data Query Concept.
CustomIndex MyIndex = new CustomIndex(); MyIndex.Name = "North-West Power Pylons"; // A user-defined index name. MyIndex.TableName = "InspectionTable"; // A user-defined table name. MyIndex.Type = "Point"; // The type of data to index. Same as the type of column it is indexing (the custom column). MyIndex.Column = "PylonLocation"; // A user-defined custom column name.