Class PivotGridModel
Represents the grid model for Pivot Grid control.
Inherited Members
Namespace: Syncfusion.UI.Xaml.PivotGrid
Assembly: Syncfusion.SfPivotGrid.UWP.dll
Syntax
public class PivotGridModel : GridModel, IDisposable, IGridVolatileCellStylesHost
Constructors
PivotGridModel(PivotGridControlBase)
Initializes a new instance of the PivotGridModel class.
Declaration
public PivotGridModel(PivotGridControlBase grid)
Parameters
Type | Name | Description |
---|---|---|
PivotGridControlBase | grid | The internal grid control. |
Properties
Engine
Gets or sets the engine data for the grid model.
Declaration
public object Engine { get; set; }
Property Value
Type |
---|
System.Object |
Grid
Gets the internal grid.
Declaration
public PivotGridControlBase Grid { get; }
Property Value
Type |
---|
PivotGridControlBase |
Item[Int32, Int32]
Gets the GridStyleInfo object associated with a particular cell.
Declaration
public GridStyleInfo this[int rowIndex, int colIndex] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | rowIndex | The row index of the cell |
System.Int32 | colIndex | The column index of the cell |
Property Value
Type |
---|
GridStyleInfo |
Methods
OnQueryCellInfo(GridQueryCellInfoEventArgs)
Called before the QueryCellInfo event occurs.
Declaration
protected override void OnQueryCellInfo(GridQueryCellInfoEventArgs e)
Parameters
Type | Name | Description |
---|---|---|
GridQueryCellInfoEventArgs | e | Event data for the event. |
Overrides
Implements
System.IDisposable