CellControlCollection.Item

CellControlCollection indexer (1 of 2)

Gets the cell control at specified row and column index.

public CellControl this[int row, int col] { get; }
ParameterDescription
rowrow index.
colcolumn index.

Remarks

If there is not a CellControl object at specified row column index, this will check the column CellControl object.

See Also


CellControlCollection indexer (2 of 2)

Gets the cell control by specified cell name.

public CellControl this[string cellName] { get; }
ParameterDescription
cellNamecell name(in excel name format, like ‘A1’, ‘F22’)

Remarks

If there is not a CellControl object at specified row column index, this will check the column CellControl object.

See Also