Skip to main content

DataGridView.AllowVirtualHorizontalScrolling Property

Specifies whether virtual horizontal scrolling is activated.

Namespace: DevExpress.XamarinForms.DataGrid

Assembly: DevExpress.XamarinForms.Grid.dll

NuGet Package: DevExpress.XamarinForms.Grid

Declaration

[XtraSerializableProperty]
public bool AllowVirtualHorizontalScrolling { get; set; }

Property Value

Type Description
Boolean

true, to activate virtual scrolling; false, to disable it.

Remarks

Use the AllowVirtualHorizontalScrolling property to improve the performance of a grid with a large number of columns. When virtual horizontal scrolling is activated, the grid renders only visible columns that fit on-screen. Each time a user scrolls the grid horizontally, visible columns are rendered again. Otherwise, if the AllowVirtualHorizontalScrolling property is set to false, the grid renders all columns.

See Also