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.MakeCellVisible(Point) Method

Scrolls the pivot grid to make the specified cell visible on screen.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v24.2.dll

NuGet Package: DevExpress.Wpf.PivotGrid

#Declaration

public void MakeCellVisible(
    Point cell
)

#Parameters

Name Type Description
cell Point

A Point structure that specifies coordinates of the cell that should be made visible on screen.

#Remarks

If the specified cell is not displayed or is truncated, the MakeCellVisible method scrolls the pivot grid to make this cell entirely visible on the screen.

Using the MakeCellVisible method ensures that the specified cell is visible, but it does not ensure that the cell takes a particular position on the screen. To ensure that the cell is visible at the top left of the screen, use the PivotGridControl.ScrollTo method.

See Also