Represents a single record of data in the Table.

Namespace:  ESRI.ArcGISExplorer.Data

Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public sealed class Row
Visual Basic (Declaration)
Public NotInheritable Class Row

Remarks

An individual Row object may be returned from the GetRow method or from a RowCollection object.

The actual data stored in the Row can be obtained from the RowValueCollection using the Values property.

ESRI documentation commonly refers to a row as being a non-spatial record and a feature as a record with a geometry which can be represented on a map. The concept of a feature does not exist in the ArcGIS Explorer API as the Row class has been designed to represent both non-spatial and spatial records. For example, you can use the Geometry property to return the geometry stored for a particular Row in a spatially enabled Table.

Inheritance Hierarchy

System..::.Object

  ESRI.ArcGISExplorer.Data..::.Row

See Also