How to select cells or rows or columns in pivot table at code level in WinForms PivotGridControl?
Selection
The WinForms PivotGridControl supports selecting the range of Cells/Rows/Columns or particular Cell/Row/Column.
Solution
The selections can be defined by using PivotGridControl’s TableModel property. The cells/rows/columns can be selected by giving correct range to the Selection (which cells or range to be selected). The Range for the selections can be provided as GridRangeInfo.
C#
//To Select range of Cells this.pivotGridControl1.TableModel.Selections.Add(GridRangeInfo.Cell(4, 3)); //To Select range of Column this.pivotGridControl1.TableModel.Selections.Add(GridRangeInfo.Col(5)); //To Select range of Row this.pivotGridControl1.TableModel.Selections.Add(GridRangeInfo.Row(9));
VB
'To Select range of Cells Me.pivotGridControl1.TableModel.Selections.Add(GridRangeInfo.Cell(4, 3)) 'To Select range of Column Me.pivotGridControl1.TableModel.Selections.Add(GridRangeInfo.Col(5)) 'To Select range of Row Me.pivotGridControl1.TableModel.Selections.Add(GridRangeInfo.Row(9))
Samples
C#: Selection CS
VB: Selection VB
Conclusion
I hope you enjoyed learning about how to select cells or rows or columns in pivot table at code level in the WinForms Pivot Grid.
You can refer to our WinForms Pivot Grid’s feature tour page to know about its other groundbreaking feature representations. You can also explore our WinForms Pivot Grid example to understand how to present and manipulate data.
For current customers, you can check out our WinForms controls from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our WinForms Pivot Grid and other WinForms controls.
If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!