Click or drag to resize

CustomColumn Class

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Describes a column in a custom data file.
Inheritance Hierarchy
SystemObject
  Telogis.GeoBaseCustomColumn

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public class CustomColumn

The CustomColumn type exposes the following members.

Constructors
  NameDescription
Public methodCustomColumn
Initializes a new instance of the CustomColumn class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Public fieldName
The user-defined name of the column.
Public fieldCode exampleType
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.

Top
Remarks
A column could represent, for example, the location of a set of power pylons. Also see CustomTable.

Related articles: Data Query Concept.

Examples
C#
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"
See Also