RecoverWorkbookFromChartCache
SpreadsheetOptions.RecoverWorkbookFromChartCache property
Wenn die Datenquelle für das Diagramm eine externe Arbeitsmappe ist und nicht verfügbar ist, wird sie aus dem Diagrammcache wiederhergestellt.
public bool RecoverWorkbookFromChartCache { get; set; }
Ausnahmen
Ausnahme | Bedingung |
---|---|
InvalidOperationException | Wird ausgelöst, wenn eine externe Arbeitsmappe nicht verfügbar ist und der Wert der RecoverWorkbookFromChartCache-Eigenschaft „false“ ist. |
Beispiele
Beispiel:
[C#]
LoadOptions loadOptions = new LoadOptions
{
SpreadsheetOptions = new SpreadsheetOptions
{
RecoverWorkbookFromChartCache = true
}
};
using (Presentation pres = new Presentation("Presentation.pptx", loadOptions))
{
IChart chart = pres.Slides[0].Shapes[0] as IChart;
IChartDataWorkbook recoveredWorkbook = chart.ChartData.ChartDataWorkbook;
}
Siehe auch
- class SpreadsheetOptions
- namensraum Aspose.Slides
- Montage Aspose.Slides