public class XamlOptions extends SaveOptions implements IXamlOptions
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(); }
| Constructor and Description |
|---|
XamlOptions()
Creates the XamlOptions instance.
|
| 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, getGradientStyle, getProgressCallback, getSkipJavaScriptLinks, getWarningCallback, setDefaultRegularFont, setGradientStyle, setProgressCallback, setSkipJavaScriptLinks, setWarningCallbackequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetDefaultRegularFont, getGradientStyle, getProgressCallback, getSkipJavaScriptLinks, getWarningCallback, setDefaultRegularFont, setGradientStyle, setProgressCallback, setSkipJavaScriptLinks, setWarningCallbackpublic final 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(); }
getExportHiddenSlides in interface IXamlOptionspublic final 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(); }
setExportHiddenSlides in interface IXamlOptionspublic final IXamlOutputSaver getOutputSaver()
Represents an implementation of IOutputSaver interface.
getOutputSaver in interface IXamlOptionspublic final void setOutputSaver(IXamlOutputSaver value)
Represents an implementation of IOutputSaver interface.
setOutputSaver in interface IXamlOptionsCopyright © 2004-2025 Aspose Pty Ltd. All Rights Reserved.