windowsforms-devexpress-dot-xtraverticalgrid-dot-vgridcontrolbase-bce01619.md
Gets or sets the leftmost visible record.
Namespace : DevExpress.XtraVerticalGrid
Assembly : DevExpress.XtraVerticalGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
[Browsable(false)]
public int LeftVisibleRecord { get; set; }
<Browsable(False)>
Public Property LeftVisibleRecord As Integer
| Type | Description |
|---|---|
| Int32 |
A zero-based integer value that specifies the index of the leftmost visible record.
|
If the total record width exceeds the grid’s client area, an end-user can scroll the control’s content horizontally. The LeftVisibleRecord property specifies the index of the leftmost visible record. Assigning a value to this property results in scrolling to the specified record. This can be useful if you need to scroll the vertical grid’s content in code.
If the LayoutViewStyle.MultiRecordView layout style is applied, the maximum value the LeftVisibleRecord property can be set to is the difference between the total records count and the number of records visible on screen.
See Also