Specifies the type of data that a Column can store.
Namespace:
ESRI.ArcGISExplorer.DataAssembly: ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)
Syntax
C# |
---|
public enum ColumnType |
Visual Basic (Declaration) |
---|
Public Enumeration ColumnType |
Members
Member name | Description | |
---|---|---|
Blob |
A Binary Large Object. This is binary data stored as a single entity; for example images, audio or other
multimedia objects.
| |
Date |
A date
| |
Double |
A double-precision floating-point number. The valid storable range is approximately -2.2E308 to 1.8E308.
| |
Geometry |
A Geometry
| |
GlobalID |
An ESRI Global ID.
| |
GUID |
A Globally Unique Identifier.
| |
Integer |
A long integer. The valid range is -2,147,483,648 to 2,147,483,647.
| |
OID |
Long Integer representing an object identifier.
| |
Raster |
A raster
| |
Single |
Single-precision floating-point number. The valid storable range is approximately -3.4E38 to 1.2E38.
| |
SmallInteger |
A small integer. The valid range is -32,768 to 32,767.
| |
String |
A character string
| |
XML |
An XML document.
|