Search
Grid.get Method
See Also
 





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

Namespace: MindFusion.Diagramming.Lanes
File: Grid.js

 Syntax

JavaScript  Copy Code

function get (column, row)

 Parameters

column

Number | Lanes.Header. A Header object or a cell index.

row

Number | Lanes.Header. A Header object or a cell index.

 Return Value

Lanes.Cell. A Cell object representing the cell or cluster of cells with the specified coordinates.

 Remarks

This method accepts either Header objects or numbers as arguments, but not a mix of both. If more than one cell corresponds to specified Header object, this method returns an object identifying all corresponding cells. Modifying the style of the returned object will affect all cells in the cluster. Calling the method without arguments, or with null arguments, will return an object identifying all cells in the grid.

 See Also