windowsforms-devexpress-dot-xtrapivotgrid-dot-pivotcelleventargs.md
Gets the cell’s bounds.
Namespace : DevExpress.XtraPivotGrid
Assembly : DevExpress.XtraPivotGrid.v25.2.dll
NuGet Package : DevExpress.Win.PivotGrid
public Rectangle Bounds { get; }
Public ReadOnly Property Bounds As Rectangle
| Type | Description |
|---|---|
| Rectangle |
A Rectangle value that specifies the cell’s bounds.
|
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Bounds property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
if (cell != new Point(-1, -1))
pivot.Invalidate(pivot.Cells.GetCellInfo(cell.X, cell.Y).Bounds);
}
Private Sub InvalidateCell(ByVal pivot As PivotGridControl, ByVal cell As Point)
If cell <> New Point(-1, -1) Then pivot.Invalidate(pivot.Cells.GetCellInfo(cell.X, cell.Y).Bounds)
End Sub
See Also