GridCells.Item

GridCells indexer (1 of 2)

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

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

Return Value

The GridCell object.

Examples

[C#]
GridWeb GridWeb1 = new GridWeb();
GridCells cells = GridWeb1.WorkSheets[0].Cells;
//Gets the cell at "A1"
GridCell cell = cells[0, 0];	

[Visual Basic]

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

See Also


GridCells indexer (2 of 2)

Gets the GridCell element at the specified cell name.

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

Return Value

A GridCell object

Examples

[C#]
ridWeb GridWeb1 = new GridWeb();
 GridCells cells = GridWeb1.WorkSheets[0].Cells;
 GridCell 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