public abstract class FixedPageSaveOptions extends SaveOptions
To learn more, visit the Specify Save Options documentation article.
| Modifier | Constructor and Description |
|---|---|
protected |
FixedPageSaveOptions()
Initializes a new instance of this class.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj)
Determines whether the specified object is equal in value to the current object.
|
int |
getColorMode()
Gets a value determining how colors are rendered.
|
int |
getJpegQuality()
Gets a value determining the quality of the JPEG images inside Html document.
|
MetafileRenderingOptions |
getMetafileRenderingOptions()
Allows to specify metafile rendering options.
|
int |
getNumeralFormat()
Gets
NumeralFormat used for rendering of numerals. |
boolean |
getOptimizeOutput()
Flag indicates whether it is required to optimize output.
|
IPageSavingCallback |
getPageSavingCallback()
Allows to control how separate pages are saved when a document is exported to fixed page format.
|
PageSet |
getPageSet()
Gets the pages to render.
|
void |
setColorMode(int value)
Sets a value determining how colors are rendered.
|
void |
setJpegQuality(int value)
Sets a value determining the quality of the JPEG images inside Html document.
|
void |
setMetafileRenderingOptions(MetafileRenderingOptions value)
Allows to specify metafile rendering options.
|
void |
setNumeralFormat(int value)
Sets
NumeralFormat used for rendering of numerals. |
void |
setOptimizeOutput(boolean value)
Flag indicates whether it is required to optimize output.
|
void |
setPageSavingCallback(IPageSavingCallback value)
Allows to control how separate pages are saved when a document is exported to fixed page format.
|
void |
setPageSet(PageSet value)
Sets the pages to render.
|
createSaveOptions, createSaveOptions, getAllowEmbeddingPostScriptFonts, getDefaultTemplate, getDml3DEffectsRenderingMode, getDmlEffectsRenderingMode, getDmlRenderingMode, getExportGeneratorName, getImlRenderingMode, getMemoryOptimization, getPrettyFormat, getProgressCallback, getSaveFormat, getTempFolder, getUpdateCreatedTimeProperty, getUpdateFields, getUpdateLastPrintedProperty, getUpdateLastSavedTimeProperty, getUpdateSdtContent, getUseAntiAliasing, getUseHighQualityRendering, setAllowEmbeddingPostScriptFonts, setDefaultTemplate, setDml3DEffectsRenderingMode, setDmlEffectsRenderingMode, setDmlRenderingMode, setExportGeneratorName, setImlRenderingMode, setMemoryOptimization, setPrettyFormat, setProgressCallback, setSaveFormat, setTempFolder, setUpdateCreatedTimeProperty, setUpdateFields, setUpdateLastPrintedProperty, setUpdateLastSavedTimeProperty, setUpdateSdtContent, setUseAntiAliasing, setUseHighQualityRenderingprotected FixedPageSaveOptions()
public PageSet getPageSet()
public void setPageSet(PageSet value)
value - The pages to render.public IPageSavingCallback getPageSavingCallback()
IPageSavingCallback value.public void setPageSavingCallback(IPageSavingCallback value)
value - The corresponding IPageSavingCallback value.public int getNumeralFormat()
NumeralFormat used for rendering of numerals. European numerals are used by default.
If the value of this property is changed and page layout is already built then Document.updatePageLayout() is invoked automatically to update any changes.NumeralFormat used for rendering of numerals. The returned value is one of NumeralFormat constants.public void setNumeralFormat(int value)
NumeralFormat used for rendering of numerals. European numerals are used by default.
If the value of this property is changed and page layout is already built then Document.updatePageLayout() is invoked automatically to update any changes.value - NumeralFormat used for rendering of numerals. The value must be one of NumeralFormat constants.public MetafileRenderingOptions getMetafileRenderingOptions()
MetafileRenderingOptions value.public void setMetafileRenderingOptions(MetafileRenderingOptions value)
value - The corresponding MetafileRenderingOptions value.public int getJpegQuality()
Has effect only when a document contains JPEG images.
Use this property to get or set the quality of the images inside a document when saving in fixed page format. The value may vary from 0 to 100 where 0 means worst quality but maximum compression and 100 means best quality but minimum compression.
The default value is 95.
public void setJpegQuality(int value)
Has effect only when a document contains JPEG images.
Use this property to get or set the quality of the images inside a document when saving in fixed page format. The value may vary from 0 to 100 where 0 means worst quality but maximum compression and 100 means best quality but minimum compression.
The default value is 95.
value - A value determining the quality of the JPEG images inside Html document.public int getColorMode()
ColorMode.NORMAL.ColorMode constants.public void setColorMode(int value)
ColorMode.NORMAL.value - A value determining how colors are rendered. The value must be one of ColorMode constants.public boolean getOptimizeOutput()
boolean value.public void setOptimizeOutput(boolean value)
value - The corresponding boolean value.public boolean equals(java.lang.Object obj)
equals in class java.lang.Object