office_math_export_mode property
TxtSaveOptions.office_math_export_mode property
Specifies how OfficeMath will be written to the output file. Default value is TxtOfficeMathExportMode.TEXT.
@property
def office_math_export_mode(self) -> aspose.words.saving.TxtOfficeMathExportMode:
...
@office_math_export_mode.setter
def office_math_export_mode(self, value: aspose.words.saving.TxtOfficeMathExportMode):
...
Examples
Shows how to export OfficeMath object as Latex in TXT.
doc = aw.Document(file_name=MY_DIR + 'Office math.docx')
save_options = aw.saving.TxtSaveOptions()
save_options.office_math_export_mode = aw.saving.TxtOfficeMathExportMode.LATEX
doc.save(file_name=ARTIFACTS_DIR + 'TxtSaveOptions.ExportOfficeMathAsLatexToText.txt', save_options=save_options)
See Also
- module aspose.words.saving
- class TxtSaveOptions