GridCellSet.Get Method (GridHeaderItem, GridHeaderItem, Boolean)
Gets or sets a cell at the intersection of the specified column header and row header.
Namespace: Microsoft.PerformancePoint.Scorecards
Assembly: Microsoft.PerformancePoint.Scorecards.Client (in Microsoft.PerformancePoint.Scorecards.Client.dll)
Syntax
'Declaration
Public Function Get ( _
rowHeader As GridHeaderItem, _
colHeader As GridHeaderItem, _
returnEmptyCellOnNull As Boolean _
) As GridCell
'Usage
Dim instance As GridCellSet
Dim rowHeader As GridHeaderItem
Dim colHeader As GridHeaderItem
Dim returnEmptyCellOnNull As Boolean
Dim returnValue As GridCell
returnValue = instance.Get(rowHeader, _
colHeader, returnEmptyCellOnNull)
public GridCell Get(
GridHeaderItem rowHeader,
GridHeaderItem colHeader,
bool returnEmptyCellOnNull
)
Parameters
rowHeader
Type: Microsoft.PerformancePoint.Scorecards.GridHeaderItemThe row header of the cell.
colHeader
Type: Microsoft.PerformancePoint.Scorecards.GridHeaderItemThe column header of the cell.
returnEmptyCellOnNull
Type: System.Booleantrue to return a new cell if a cell does not exist at the specified coordinates; otherwise, false.
Return Value
Type: Microsoft.PerformancePoint.Scorecards.GridCell
The cell at the intersection of the specified headers.