public enum SaveFormat extends Enum<SaveFormat>
Specifies format
Enum Constant and Description |
---|
Aps
Saving as APS XML file.
|
Doc
means saving in DOC format
|
DocX
means saving in DOCX format
|
Epub
means saving in EPUB format(special format of e-books)
|
Excel
means saving in MsExcel format
|
Html
means saving in HTML format
|
MobiXml
means saving in MobiXML format(special format of e-books)
|
None
Deprecated.
|
Pdf
means saving without change of format, i.e. as PDF use it please instead of
'SaveFormat.None', that is obsolete one
|
PdfXml
Internal PDF document structure in XML format
|
Plugin
means saving with the aid of a plugin
|
Pptx
means saving in MHT(WebArchieve) ///
Convet document to Mht format.
|
Svg
means saving in SVG format
|
TeX
means saving in TEX format i.e. format suitable for Latex text editor
|
Xml
means saving in XML format
|
Xps
means saving in XPS format
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static SaveFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SaveFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SaveFormat Pdf
means saving without change of format, i.e. as PDF use it please instead of 'SaveFormat.None', that is obsolete one
@Deprecated public static final SaveFormat None
means saving without change of format, i.e. as PDF It's obsolete one and will be deleted eventually, please use instead 'SaveFormat.Pdf'
public static final SaveFormat Doc
means saving in DOC format
public static final SaveFormat Xps
means saving in XPS format
public static final SaveFormat Html
means saving in HTML format
public static final SaveFormat Xml
means saving in XML format
public static final SaveFormat TeX
means saving in TEX format i.e. format suitable for Latex text editor
public static final SaveFormat DocX
means saving in DOCX format
public static final SaveFormat Svg
means saving in SVG format
public static final SaveFormat MobiXml
means saving in MobiXML format(special format of e-books)
public static final SaveFormat Excel
means saving in MsExcel format
public static final SaveFormat Epub
means saving in EPUB format(special format of e-books)
public static final SaveFormat Plugin
means saving with the aid of a plugin
public static final SaveFormat Pptx
means saving in MHT(WebArchieve) ///
Convet document to Mht format. This code was experimental one used during works related to https://pdf.aspose.com/jira/browse/PDFNEWNET-36340 is not going on production, cause there are cross-browsers problems with created MHT - so, it can be used in the future if finally it will be necessary to create MHT itself. PDFNEWNET-36340 was resolved with usage of DataSceme URLs(embedding data into HTML http://en.wikipedia.org/wiki/Data_URI_scheme) So, this conversion really not used right now.
means saving in PPTX format
public static final SaveFormat Aps
Saving as APS XML file.
public static final SaveFormat PdfXml
Internal PDF document structure in XML format
public static SaveFormat[] values()
for (SaveFormat c : SaveFormat.values()) System.out.println(c);
public static SaveFormat valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()