Search
Grid.Item Property (Header, Header)
See Also
 





Gets the cell or the cluster of cells corresponding to the specified row and column.

Namespace: MindFusion.Diagramming.Lanes
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public ICell Item [
    Header column,
    Header row
] { get; }

Visual Basic  Copy Code

Public ReadOnly Property Item( _
    column As Header, _
    row As Header _
) As ICell

 Parameters

column
A Header object that represents the column of the cell to get.
row
A Header object that represents the row of the cell to get.

 Property Value

An ICell instance representing all grid cell corresponding to the specified headers.

 Remarks

If both Header parameters are null (Nothing in Visual Basic), a group containing all cells in the grid is returned. If only one of the Header parameters is null, the returned cell group contains all cells from the row or a column specified through the other parameter. This feature lets you set the Style of all cells in a group through a single assignment.

 See Also