Item
Innehåll
[
Dölj
]GridCells indexer (1 of 3)
BlirCell objekt i kalkylbladet
public GridCell this[int index] { get; }
Parameter | Beskrivning |
---|---|
index | Elementets 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
- class GridCell
- class GridCells
- namnutrymme Aspose.Cells.GridWeb.Data
- hopsättning Aspose.Cells.GridWeb
GridCells indexer (2 of 3)
FårCell element vid angivet cellradindex och kolumnindex.
public GridCell this[int row, int column] { get; }
Parameter | Beskrivning |
---|---|
row | Radindex. |
column | Kolumnindex. |
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
- class GridCell
- class GridCells
- namnutrymme Aspose.Cells.GridWeb.Data
- hopsättning Aspose.Cells.GridWeb
GridCells indexer (3 of 3)
FårCell element vid det angivna cellnamnet.
public GridCell this[string cellName] { get; }
Parameter | Beskrivning |
---|---|
cellName | Cellnamn, 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
- class GridCell
- class GridCells
- namnutrymme Aspose.Cells.GridWeb.Data
- hopsättning Aspose.Cells.GridWeb