Skip to main content
A newer version of this page is available. .

VGridControlBase.LeftVisibleRecord Property

Gets or sets the leftmost visible record.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v19.2.dll

Declaration

[Browsable(false)]
public int LeftVisibleRecord { get; set; }

Property Value

Type Description
Int32

A zero-based integer value that specifies the index of the leftmost visible record.

Remarks

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