FilterControlColumn.ColumnType Property
Gets or sets the column’s data type.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
[DefaultValue(FilterControlColumnType.Default)]
public FilterControlColumnType ColumnType { get; set; }
Property Value
Type | Default | Description |
---|---|---|
FilterControlColumnType | Default | A FilterControlColumnType enumeration value that specifies the column’s data type. |
Available values:
Name | Description |
---|---|
Default | Contains string values (the String type). |
String | Contains string values (the String type). |
Integer | Contains integer values (the Int32 type). |
DateTime | Contains date/time values (the DateTime type). |
Boolean | Contains Boolean values (the Boolean type). |
Double | Contains double values (the Double type). |
Decimal | Contains decimal values (the Decimal type). |
Remarks
Use the ColumnType property to specify the filter column’s data type. By default, the ColumnType property is set to FilterControlColumnType.Default. In this instance, the String type is used.