Item

GridCells indexer (1 of 3)

BlirCell objekt i kalkylbladet

public GridCell this[int index] { get; }
ParameterBeskrivning
indexElementets nollbaserade index.

Fastighetsvärde

Elementet vid det angivna indexet.

Anmärkningar

Detta är indexeraren för klassen Cells. Hämtar cellelementet vid angivet index.

Se även


GridCells indexer (2 of 3)

FårCell element vid angivet cellradindex och kolumnindex.

public GridCell this[int row, int column] { get; }
ParameterBeskrivning
rowRadindex.
columnKolumnindex.

Returvärde

DeCell objekt.

Exempel

[C#]

Cells cells = excel.Worksheets[0].Cells;
//Hämtar cellen vid "A1"
Cell 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) 

Se även


GridCells indexer (3 of 3)

FårCell element vid det angivna cellnamnet.

public GridCell this[string cellName] { get; }
ParameterBeskrivning
cellNameCellnamn, inklusive dess kolumnbokstav och radnummer, till exempel A5.

Returvärde

ACell objekt

Exempel

[C#]

Cells cells = excel.Worksheets[0].Cells;
Cell cell = cells["A1"];	//Hämtar cellen vid "A1"

[Visual Basic]

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

Se även