Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

VGridControlBase.LeftVisibleRecord Property

Gets or sets the leftmost visible record.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid

#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