Package | Description |
---|---|
com.groupdocs.editor.formats |
The com.groupdocs.editor.formats namespace provides interfaces and classes that describes supported document formats.
|
com.groupdocs.editor.metadata |
The com.groupdocs.editor.metadata namespace provides classes for describing basic document properties dependent on document type.
|
Modifier and Type | Field and Description |
---|---|
static TextualFormats |
TextualFormats.Html
HyperText Markup Language document (HTML) is the extension for web pages created for display in browsers.
|
static TextualFormats |
TextualFormats.Json
JSON (JavaScript Object Notation) is an open standard file format for sharing data that uses human-readable text to store and transmit data.
|
static TextualFormats |
TextualFormats.Md
Markdown is a lightweight markup language for creating formatted text using a plain-text editor.
|
static TextualFormats |
TextualFormats.Txt
Plain Text Document (TXT) represents a text document that contains plain text in the form of lines.
|
static TextualFormats |
TextualFormats.Xml
eXtensible Markup Language document (XML) that is similar to HTML but different in using tags for defining objects.
|
Modifier and Type | Method and Description |
---|---|
TextualFormats |
TextualFormats.Clone()
Deprecated.
|
static TextualFormats |
TextualFormats.fromExtension(String extension)
Returns instance of
TextualFormats structure, associated to specified filename extension, or throws an exception, if extension cannot be properly parsed |
Modifier and Type | Method and Description |
---|---|
Iterator<TextualFormats> |
TextualFormats.AllEnumerable.iterator()
Returns an enumerator for all supportable Textual formats
|
Modifier and Type | Method and Description |
---|---|
void |
TextualFormats.CloneTo(TextualFormats that)
Deprecated.
|
boolean |
TextualFormats.equals(TextualFormats other)
Determines whether this instance is equal to the other specified TextualFormats instance
|
static boolean |
TextualFormats.equals(TextualFormats obj1,
TextualFormats obj2)
Deprecated.
|
static boolean |
TextualFormats.op_Equality(TextualFormats first,
TextualFormats second)
Checks two given TextualFormats instances on equality
|
static boolean |
TextualFormats.op_Inequality(TextualFormats first,
TextualFormats second)
Checks two given TextualFormats instances on inequality
|
Modifier and Type | Method and Description |
---|---|
TextualFormats |
MarkdownDocumentInfo.getFormat()
Returns a format of this Markdown document — always is
Md |
TextualFormats |
TextualDocumentInfo.getFormat()
Returns a format of this textual document.
|
Constructor and Description |
---|
TextualDocumentInfo(TextualFormats format,
long size,
com.aspose.ms.System.Text.Encoding encoding)
Deprecated.
|