GridCellSet.Get method (List<GridHeaderItem>, Boolean)
Gets cell at the intersection of two headers that are specified as a list.
Namespace: Microsoft.PerformancePoint.Scorecards
Assembly: Microsoft.PerformancePoint.Scorecards.Client (in Microsoft.PerformancePoint.Scorecards.Client.dll)
Syntax
'Declaration
Public Function Get ( _
headers As List(Of GridHeaderItem), _
returnEmptyCellOnNull As Boolean _
) As GridCell
'Usage
Dim instance As GridCellSet
Dim headers As List(Of GridHeaderItem)
Dim returnEmptyCellOnNull As Boolean
Dim returnValue As GridCell
returnValue = instance.Get(headers, returnEmptyCellOnNull)
public GridCell Get(
List<GridHeaderItem> headers,
bool returnEmptyCellOnNull
)
Parameters
headers
Type: System.Collections.Generic.List<GridHeaderItem>The headers that specify the coordinates 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.