Click or drag to resize

RangedIndexColumn Class

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
A RangedIndexColumn is a designated sequential range of columns in a Table that are used for creating an index. An index allows you to query the table for records matching specified criteria.
Inheritance Hierarchy

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

The RangedIndexColumn type exposes the following members.

Constructors
  NameDescription
Public methodRangedIndexColumn
Creates a RangedIndexColumn for a specified range of columns.
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
Examples
C#
using (EnsureTransaction trans = new EnsureTransaction(repository)) {
    Index idx = t.CreateIndex("locations1-3", 
        new IndexColumn[] { 
            new RangedIndexColumn("latlon1", "latlon3") 
        });
}
See Also