Back to Devexpress

UnboundDataType Enum

maui-devexpress-dot-maui-dot-core-89f8419c.md

latest2.0 KB
Original Source

UnboundDataType Enum

Contains values that specify the data type and binding mode of columns.

Namespace : DevExpress.Maui.Core

Assembly : DevExpress.Maui.Core.dll

NuGet Package : DevExpress.Maui.Core

Declaration

csharp
public enum UnboundDataType

Members

NameDescription
Bound

Indicates that the column is bound to a field in the control’s underlying data source. The type of data this column contains is determined by the bound field.

| | Integer |

Indicates that the column is unbound and it contains integer values (the Int32 type).

| | Decimal |

Indicates that the column is unbound and it contains decimal values (the Decimal type).

| | DateTime |

Indicates that the column is unbound and it contains date/time values (the DateTime type).

| | String |

Indicates that the column is unbound and it contains string values (the String type).

| | Boolean |

Indicates that the column is unbound and it contains Boolean values (the Boolean type).

| | Object |

Indicates that the column is unbound and it contains values of any type. A TextEdit editor is used as an in-place editor for such a column.

|

The following properties accept/return UnboundDataType values:

Extension Methods

Yield<UnboundDataType>()

YieldIfNotNull<UnboundDataType>()

See Also

DevExpress.Maui.Core Namespace