Item
محتويات
[
يخفي
]GridCells indexer (1 of 3)
يحصلCell عنصر داخل ورقة العمل
public GridCell this[int index] { get; }
معامل | وصف |
---|---|
index | الفهرس الصفري للعنصر. |
Property_Value
العنصر في الفهرس المحدد.
ملاحظات
هذا هو المفهرس لفئة الخلايا. يحصل على عنصر الخلية في الفهرس المحدد .
أنظر أيضا
- class GridCell
- class GridCells
- مساحة الاسم Aspose.Cells.GridDesktop.Data
- المجسم Aspose.Cells.GridDesktop
GridCells indexer (2 of 3)
يحصل على ملفCell عنصر في فهرس صف الخلية المحدد وفهرس العمود.
public GridCell this[int row, int column] { get; }
معامل | وصف |
---|---|
row | فهرس الصف. |
column | فهرس العمود. |
قيمة الإرجاع
الCell هدف.
أمثلة
[C#]
Cells cells = excel.Worksheets[0].Cells;
Cell cell = cells[0, 0]; // الحصول على الخلية عند "A1"
[Visual Basic]
Dim cells As Cells = excel.WorkSheets(0).Cells
Dim cell As Cell = cells(0,0) 'Gets the cell at "A1"
أنظر أيضا
- class GridCell
- class GridCells
- مساحة الاسم Aspose.Cells.GridDesktop.Data
- المجسم Aspose.Cells.GridDesktop
GridCells indexer (3 of 3)
يحصل على ملفCell عنصر في اسم الخلية المحدد.
public GridCell this[string cellName] { get; }
معامل | وصف |
---|---|
cellName | اسم الخلية ، بما في ذلك حرف العمود ورقم الصف ، على سبيل المثال A5. |
قيمة الإرجاع
أCell هدف
أمثلة
[C#]
Cells cells = excel.Worksheets[0].Cells;
Cell cell = cells["A1"]; // الحصول على الخلية عند "A1"
[Visual Basic]
Dim cells As Cells = excel.Worksheets(0).Cells
Dim cell As Cell = cells("A1") 'Gets the cell at "A1"
أنظر أيضا
- class GridCell
- class GridCells
- مساحة الاسم Aspose.Cells.GridDesktop.Data
- المجسم Aspose.Cells.GridDesktop