public abstract class TxtSaveOptionsBase extends SaveOptions
To learn more, visit the Specify Save Options documentation article.
| Constructor and Description |
|---|
TxtSaveOptionsBase() |
| Modifier and Type | Method and Description |
|---|---|
java.nio.charset.Charset |
getEncoding() |
int |
getExportHeadersFootersMode()
Specifies the way headers and footers are exported to the text formats.
|
boolean |
getForcePageBreaks()
Allows to specify whether the page breaks should be preserved during export.
|
java.lang.String |
getParagraphBreak()
Specifies the string to use as a paragraph break when exporting in text formats.
|
void |
setEncoding(java.nio.charset.Charset value) |
void |
setExportHeadersFootersMode(int value)
Specifies the way headers and footers are exported to the text formats.
|
void |
setForcePageBreaks(boolean value)
Allows to specify whether the page breaks should be preserved during export.
|
void |
setParagraphBreak(java.lang.String value)
Specifies the string to use as a paragraph break when exporting in text formats.
|
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, setUseHighQualityRenderingpublic java.nio.charset.Charset getEncoding()
public void setEncoding(java.nio.charset.Charset value)
public java.lang.String getParagraphBreak()
The default value is ControlChar.CR_LF.
String value.public void setParagraphBreak(java.lang.String value)
The default value is ControlChar.CR_LF.
value - The corresponding String value.public boolean getForcePageBreaks()
Allows to specify whether the page breaks should be preserved during export.
The default value is false.
The property affects only page breaks that are inserted explicitly into a document. It is not related to page breaks that MS Word automatically inserts at the end of each page.boolean value.public void setForcePageBreaks(boolean value)
Allows to specify whether the page breaks should be preserved during export.
The default value is false.
The property affects only page breaks that are inserted explicitly into a document. It is not related to page breaks that MS Word automatically inserts at the end of each page.value - The corresponding boolean value.public int getExportHeadersFootersMode()
TxtExportHeadersFootersMode.PRIMARY_ONLY.int value. The returned value is one of TxtExportHeadersFootersMode constants.public void setExportHeadersFootersMode(int value)
TxtExportHeadersFootersMode.PRIMARY_ONLY.value - The corresponding int value. The value must be one of TxtExportHeadersFootersMode constants.