Skip to main content

PivotGridControl.MakeCellVisible(Point) Method

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

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v23.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