Add
Contenido
[
Ocultar
]Add(SheetType)
Agrega una hoja de trabajo a la colección.
public int Add(SheetType type)
Parámetro | Escribe | Descripción |
---|---|---|
type | SheetType | Tipo de hoja de trabajo. |
Valor_devuelto
Worksheet
índice de objetos
Ejemplos
[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)
Ver también
- enum SheetType
- class WorksheetCollection
- espacio de nombres Aspose.Cells
- asamblea Aspose.Cells
Add()
Agrega una hoja de trabajo a la colección.
public int Add()
Valor_devuelto
Worksheet
índice de objetos
Ver también
- class WorksheetCollection
- espacio de nombres Aspose.Cells
- asamblea Aspose.Cells
Add(string)
Agrega una hoja de trabajo a la colección.
public Worksheet Add(string sheetName)
Parámetro | Escribe | Descripción |
---|---|---|
sheetName | String | Nombre de la hoja de trabajo |
Valor_devuelto
Worksheet
objeto.
Ver también
- class Worksheet
- class WorksheetCollection
- espacio de nombres Aspose.Cells
- asamblea Aspose.Cells