Skip to main content
All docs
V26.1
  • ITreeListDataColumn.UnboundType Property

    Indicates that the column is unbound and specifies an associated data type.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.Grid.v26.1.dll

    Declaration

    [DefaultValue(TreeListUnboundColumnType.Bound)]
    TreeListUnboundColumnType UnboundType { get; set; }

    Property Value

    Type Default Description
    TreeListUnboundColumnType Bound

    An enumeration value.

    Available values:

    Name Description
    Bound

    The column is bound to a data field. This field specifies the column data type.

    Integer

    The column contains Int32 values.

    Decimal

    The column contains Decimal values.

    DateTime

    The column contains DateTime values.

    String

    The column contains String values.

    Boolean

    The column contains Boolean values.

    Object

    The column contains Object values.

    Remarks

    Refer to the UnboundType property description for additional information and an example.

    See Also