Item

GridCells indexer (1 of 3)

AlırCell çalışma sayfasındaki öğe

public GridCell this[int index] { get; }
ParametreTanım
indexÖğenin sıfır tabanlı dizini.

Mülk değeri

Belirtilen dizindeki öğe.

Notlar

Bu, Cells sınıfı için dizin oluşturucudur. Belirtilen dizindeki hücre öğesini alır.

Ayrıca bakınız


GridCells indexer (2 of 3)

Cell belirtilen hücre satırı dizini ve sütun dizinindeki öğe.

public GridCell this[int row, int column] { get; }
ParametreTanım
rowSatır indeksi.
columnSütun indeksi.

Geri dönüş değeri

buCell nesne.

Örnekler

[C#]

Cells cells = excel.Worksheets[0].Cells;
Cell cell = cells[0, 0];	// "A1"deki hücreyi alır

[Visual Basic]

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

Ayrıca bakınız


GridCells indexer (3 of 3)

Cell belirtilen hücre adındaki öğe.

public GridCell this[string cellName] { get; }
ParametreTanım
cellNameSütun harfi ve satır numarası dahil hücre adı, örneğin A5.

Geri dönüş değeri

ACell nesne

Örnekler

[C#]

Cells cells = excel.Worksheets[0].Cells;
Cell cell = cells["A1"];	// "A1"deki hücreyi alır

[Visual Basic]

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

Ayrıca bakınız