IChartDataWorksheetCollection
IChartDataWorksheetCollection interface
Representa la colección de hojas de cálculo del libro de datos de gráfico.
public interface IChartDataWorksheetCollection : IGenericCollection<IChartDataWorksheet>
Propiedades
Nombre | Descripción |
---|---|
Item { get; } | Devuelve la hoja de trabajo por index. |
Ejemplos
Ejemplo:
[C#]
using (Presentation pres = new Presentation())
{
IChart chart = pres.Slides[0].Shapes.AddChart(ChartType.Pie, 50, 50, 400, 500);
IChartDataWorkbook workbook = chart.ChartData.ChartDataWorkbook;
foreach (IChartDataWorksheet worksheet in workbook.Worksheets)
{
string worksheetName = worksheet.Name;
}
}
Ver también
- interface IGenericCollection<T>
- interface IChartDataWorksheet
- espacio de nombres Aspose.Slides.Charts
- asamblea Aspose.Slides