DataType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Describes the type of data contained in the column.
public enum DataType
type DataType =
Public Enum DataType
- Inheritance
-
DataType
Fields
Name | Value | Description |
---|---|---|
Automatic | 1 | Internal only. |
String | 2 | Column or measure contains string data values. |
Int64 | 6 | Column or measure contains integers. |
Double | 8 | Column or measure contains double-precision floating-point numbers. |
DateTime | 9 | Column or measure contains date and time data |
Decimal | 10 | Column or measure contains decimal data values. |
Boolean | 11 | Column or measure contains boolean data values. |
Binary | 17 | Column or measure contains binary data. |
Unknown | 19 | Initial value of a newly created column, replaced with an actual value after saving a Column to the Server. |
Variant | 20 | A measure with varying data type. |