Item
Inhalt
[
Ausblenden
]GridCells indexer (1 of 3)
erhältCell Element im Arbeitsblatt
public GridCell this[int index] { get; }
Parameter | Beschreibung |
---|---|
index | Der nullbasierte Index des Elements. |
Eigentumswert
Das Element am angegebenen Index.
Bemerkungen
Dies ist der Indexer für die Cells-Klasse. Ruft das Zellenelement am angegebenen Index ab.
Siehe auch
- class GridCell
- class GridCells
- namensraum Aspose.Cells.GridWeb.Data
- Montage Aspose.Cells.GridWeb
GridCells indexer (2 of 3)
Ruft die abCell Element am angegebenen Zellenzeilenindex und Spaltenindex.
public GridCell this[int row, int column] { get; }
Parameter | Beschreibung |
---|---|
row | Zeilenindex. |
column | Spaltenindex. |
Rückgabewert
DasCell Objekt.
Beispiele
[C#]
Cells cells = excel.Worksheets[0].Cells;
// Ruft die Zelle bei "A1" ab
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)
Siehe auch
- class GridCell
- class GridCells
- namensraum Aspose.Cells.GridWeb.Data
- Montage Aspose.Cells.GridWeb
GridCells indexer (3 of 3)
Ruft die abCell Element am angegebenen Zellennamen.
public GridCell this[string cellName] { get; }
Parameter | Beschreibung |
---|---|
cellName | Zellenname, einschließlich Spaltenbuchstabe und Zeilennummer, z. B. A5. |
Rückgabewert
EINCell Objekt
Beispiele
[C#]
Cells cells = excel.Worksheets[0].Cells;
Cell cell = cells["A1"]; // Ruft die Zelle bei "A1" ab
[Visual Basic]
Dim cells As Cells = excel.Worksheets(0).Cells
Dim cell As Cell = cells("A1") 'Gets the cell at "A1"
Siehe auch
- class GridCell
- class GridCells
- namensraum Aspose.Cells.GridWeb.Data
- Montage Aspose.Cells.GridWeb