public class TxtOfficeMathExportMode
extends java.lang.Object
SaveFormat.TEXT.
Examples:
Shows how to export OfficeMath object as Latex in TXT.
Document doc = new Document(getMyDir() + "Office math.docx");
TxtSaveOptions saveOptions = new TxtSaveOptions();
saveOptions.setOfficeMathExportMode(TxtOfficeMathExportMode.LATEX);
doc.save(getArtifactsDir() + "TxtSaveOptions.ExportOfficeMathAsLatexToText.txt", saveOptions);
| Modifier and Type | Field and Description |
|---|---|
static int |
LATEX
Export OfficeMath as LaTeX.
|
static int |
length |
static int |
TEXT
Export OfficeMath as plain text.
|
| Modifier and Type | Method and Description |
|---|---|
static int |
fromName(java.lang.String txtOfficeMathExportModeName) |
static java.lang.String |
getName(int txtOfficeMathExportMode) |
static int[] |
getValues() |
static java.lang.String |
toString(int txtOfficeMathExportMode) |