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

PivotGridControl.LeftTopCoord Property

Gets or sets the column and row indexes of the data cell displayed in the top left corner.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v24.2.dll

NuGet Package: DevExpress.Win.PivotGrid

#Declaration

[Browsable(false)]
public Point LeftTopCoord { get; set; }

#Property Value

Type Description
Point

A Point structure that identifies the column and row indexes of the data cell displayed in the top left corner.

#Remarks

The LeftTopCoord property allows you to scroll the PivotGrid control. The minimum scroll step is one column (when scrolling horizontally) and one row (when scrolling vertically).

A data cell can be identified by its column and row indexes. The X and Y members of the LeftTopCoord property identify the column and row index of the data cell displayed in the top left corner of the PivotGrid control. Initially the LeftTopCoord property is set to {0,0} and the control is not scrolled. Setting the LeftTopCoord property to {1, 1} will scroll the control to the right by one column and down by one row.

See Also