WebCells.Item

WebCells indexer (1 of 2)

Gets the Cell element at the specified cell row index and column index.

public WebCell this[int row, int column] { get; }
ParameterDescription
rowRow index.
columnColumn index.

Return Value

The Cell object.

Examples

[C#]

Cells cells = excel.Worksheets[0].Cells;
Cell cell = cells[0, 0];	//Gets the cell at "A1"

[Visual Basic]

Dim cells As Cells =  excel.WorkSheets(0).Cells
Dim cell As Cell =  cells(0,0)  'Gets the cell at "A1"

See Also


WebCells indexer (2 of 2)

Gets the Cell element at the specified cell name.

public WebCell this[string cellName] { get; }
ParameterDescription
cellNameCell name,including its column letter and row number, for example A5.

Return Value

A Cell object

Examples

[C#]

Cells cells = excel.Worksheets[0].Cells;
Cell cell = cells["A1"];	//Gets the cell at "A1"

[Visual Basic]

Dim cells As Cells =  excel.Worksheets(0).Cells
Dim cell As Cell =  cells("A1")  'Gets the cell at "A1"

See Also