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, getProgressCallback, getWarningCallback, setDefaultRegularFont, setProgressCallback, setWarningCallback
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getDefaultRegularFont, getProgressCallback, getWarningCallback, setDefaultRegularFont, setProgressCallback, setWarningCallback
public 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 IXamlOptions
public 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 IXamlOptions
public final IXamlOutputSaver getOutputSaver()
Represents an implementation of IOutputSaver interface.
getOutputSaver
in interface IXamlOptions
public final void setOutputSaver(IXamlOutputSaver value)
Represents an implementation of IOutputSaver interface.
setOutputSaver
in interface IXamlOptions