Back to Devexpress

IThreadSafeField.UnboundType Property

corelibraries-devexpress-dot-xtrapivotgrid-dot-ithreadsafefield-194bd1b7.md

latest3.5 KB
Original Source

IThreadSafeField.UnboundType Property

Gets the data type and binding mode of the field.

Namespace : DevExpress.XtraPivotGrid

Assembly : DevExpress.PivotGrid.v25.2.Core.dll

NuGet Packages : DevExpress.PivotGrid.Core, DevExpress.Win.Navigation

Declaration

csharp
UnboundColumnType UnboundType { get; }
vb
ReadOnly Property UnboundType As UnboundColumnType

Property Value

TypeDescription
UnboundColumnType

A UnboundColumnType enumeration value specifying the data type and binding mode of the field.

|

Available values:

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 assigned for the in-place editing of such a column.

|

Remarks

The UnboundType property provides thread-safe access to the field’s PivotGridFieldBase.UnboundType property. To learn more, see PivotGridFieldBase.UnboundType.

Use the UnboundType property when handling events in asynchronous mode.

See Also

UnboundType

UnboundExpression

UnboundFieldName

Bind Pivot Grid Fields to Calculated Expressions

IThreadSafeField Interface

IThreadSafeField Members

DevExpress.XtraPivotGrid Namespace