Item
İçindekiler
[
Saklamak
]GridCells indexer (1 of 3)
AlırCell çalışma sayfasındaki öğe
public GridCell this[int index] { get; }
Parametre | Tanı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
- class GridCell
- class GridCells
- ad alanı Aspose.Cells.GridWeb.Data
- toplantı Aspose.Cells.GridWeb
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; }
Parametre | Tanım |
---|---|
row | Satır indeksi. |
column | Sütun indeksi. |
Geri dönüş değeri
buCell nesne.
Örnekler
[C#]
Cells cells = excel.Worksheets[0].Cells;
// "A1"deki hücreyi alır
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)
Ayrıca bakınız
- class GridCell
- class GridCells
- ad alanı Aspose.Cells.GridWeb.Data
- toplantı Aspose.Cells.GridWeb
GridCells indexer (3 of 3)
Cell belirtilen hücre adındaki öğe.
public GridCell this[string cellName] { get; }
Parametre | Tanım |
---|---|
cellName | Sü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
- class GridCell
- class GridCells
- ad alanı Aspose.Cells.GridWeb.Data
- toplantı Aspose.Cells.GridWeb