public interface IXamlOptions extends ISaveOptions
Options that control how a XAML document is saved.
Presentation pres = new Presentation("pres.pptx"); try { XamlOptions xamlOptions = new XamlOptions(); xamlOptions.setExportHiddenSlides(true); pres.save(xamlOptions); } finally { if (pres != null) pres.dispose(); }
Modifier and Type | Method and Description |
---|---|
boolean |
getExportHiddenSlides()
Determines whether hidden slides will be exported.
|
IXamlOutputSaver |
getOutputSaver()
Represents an implementation of IOutputSaver interface.
|
void |
setExportHiddenSlides(boolean value)
Determines whether hidden slides will be exported.
|
void |
setOutputSaver(IXamlOutputSaver value)
Represents an implementation of IOutputSaver interface.
|
getDefaultRegularFont, getProgressCallback, getWarningCallback, setDefaultRegularFont, setProgressCallback, setWarningCallback
boolean getExportHiddenSlides()
Determines whether hidden slides will be exported.
Presentation pres = new Presentation("pres.pptx"); try { XamlOptions xamlOptions = new XamlOptions(); xamlOptions.setExportHiddenSlides(true); pres.save(xamlOptions); } finally { if (pres != null) pres.dispose(); }
void setExportHiddenSlides(boolean value)
Determines whether hidden slides will be exported.
Presentation pres = new Presentation("pres.pptx"); try { XamlOptions xamlOptions = new XamlOptions(); xamlOptions.setExportHiddenSlides(true); pres.save(xamlOptions); } finally { if (pres != null) pres.dispose(); }
IXamlOutputSaver getOutputSaver()
Represents an implementation of IOutputSaver interface.
void setOutputSaver(IXamlOutputSaver value)
Represents an implementation of IOutputSaver interface.
Copyright © 2004-2022 Aspose Pty Ltd. All Rights Reserved.