Skip to main content
All docs
V25.2
  • ITreeList.VirtualScrollingMode Property

    When VirtualScrollingEnabled is set to true, specifies whether the TreeList virtualizes rows, columns, or both.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.2.dll

    Declaration

    [DefaultValue(TreeListVirtualScrollingMode.Rows)]
    TreeListVirtualScrollingMode VirtualScrollingMode { get; set; }

    Property Value

    Type Default Description
    TreeListVirtualScrollingMode Rows

    An enumeration value.

    Available values:

    Name Description
    Rows

    Only rows are virtualized.

    Columns

    Only columns are virtualized.

    RowsAndColumns

    Rows and columns are virtualized.

    Remarks

    Refer to the VirtualScrollingMode property description for more information and an example.

    See Also