Add
İçindekiler
[
Saklamak
]Add(SheetType)
Koleksiyona bir çalışma sayfası ekler.
public int Add(SheetType type)
Parametre | Tip | Tanım |
---|---|---|
type | SheetType | Çalışma sayfası türü. |
Geri dönüş değeri
Worksheet
nesne indeksi.
Örnekler
[C#]
Workbook workbook = new Workbook();
workbook.Worksheets.Add(SheetType.Chart);
Cells cells = workbook.Worksheets[0].Cells;
cells["c2"].PutValue(5000);
cells["c3"].PutValue(3000);
cells["c4"].PutValue(4000);
cells["c5"].PutValue(5000);
cells["c6"].PutValue(6000);
ChartCollection charts = workbook.Worksheets[1].Charts;
int chartIndex = charts.Add(ChartType.Column, 10,10,20,20);
Chart chart = charts[chartIndex];
chart.NSeries.Add("Sheet1!C2:C6", true);
[Visual Basic]
Dim workbook As Workbook = New Workbook()
workbook.Worksheets.Add(SheetType.Chart)
Dim cells As Cells = workbook.Worksheets(0).Cells
cells("c2").PutValue(5000)
cells("c3").PutValue(3000)
cells("c4").PutValue(4000)
cells("c5").PutValue(5000)
cells("c6").PutValue(6000)
Dim charts As ChartCollection = workbook.Worksheets(1).Charts
Dim chartIndex As Integer = charts.Add(ChartType.Column,10,10,20,20)
Dim chart As Chart = charts(chartIndex)
chart.NSeries.Add("Sheet1!C2:C6", True)
Ayrıca bakınız
- enum SheetType
- class WorksheetCollection
- ad alanı Aspose.Cells
- toplantı Aspose.Cells
Add()
Koleksiyona bir çalışma sayfası ekler.
public int Add()
Geri dönüş değeri
Worksheet
nesne indeksi.
Ayrıca bakınız
- class WorksheetCollection
- ad alanı Aspose.Cells
- toplantı Aspose.Cells
Add(string)
Koleksiyona bir çalışma sayfası ekler.
public Worksheet Add(string sheetName)
Parametre | Tip | Tanım |
---|---|---|
sheetName | String | Çalışma sayfası adı |
Geri dönüş değeri
Worksheet
nesne.
Ayrıca bakınız
- class Worksheet
- class WorksheetCollection
- ad alanı Aspose.Cells
- toplantı Aspose.Cells