FilterControlColumn.ColumnType Property
In This Article
Gets or sets the column’s data type.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v25.1.dll
#Declaration
[DefaultValue(FilterControlColumnType.Default)]
public FilterControlColumnType ColumnType { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Filter |
Default | A Filter |
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). |
Date |
Contains date/time values (the Date |
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.
See Also