Enum ColumnType
Specifies the column type of the GridColumn, denoting the type of data it displays.
- StringA string type column.
- NumberA number type column. Primitive types such as int, int?, floar, double, decimal etc. are consider as number type column.
- IntegerA integer type column.
- DoubleA double type column.
- LongA Long type column.
- DecimalA Decimal type column.
- BooleanA boolean type column.
- DateA date type column. Primitive types such as datetime and datetimeoffset are consider as date type column.
- DateTimeA datetime type column. Primitive types such as datetime and datetimeoffset are consider as date type column.
- CheckBoxEnables checkbox column for selection purpose. No data operation is assosiated with this column.
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum ColumnType
Fields
| Name | Description |
|---|---|
| Boolean | A boolean type column. |
| CheckBox | Enables checkbox column for selection purpose. No data operation is assosiated with this column. |
| Date | A date type column. Primitive types such as datetime and datetimeoffset are consider as date type column. |
| DateOnly | Specifies that the grid column is used to display and edit values of the |
| DateTime | A datetime type column. Primitive types such as datetime and datetimeoffset are consider as date type column. |
| Decimal | A decimal type column. Displays decimal values. |
| Double | A double type column. Displays double values. |
| Integer | An integer type column. Displays integer values. |
| Long | A long type column. Displays long integer values. |
| None | No column type is specified. |
| String | A string type column. |
| TimeOnly | Specifies that the grid column is used to display and edit values of the |