public class FixedLayoutFormats
extends com.groupdocs.editor.formats.abstraction.DocumentFormatBase
Encapsulates all fixed-layout (also know as "fixed-page") formats, which includes PDF and XPS (this does not include raster images)
| Modifier and Type | Field and Description |
|---|---|
static FixedLayoutFormats |
Pdf
Portable Document Format (PDF) is a type of document created by Adobe back in 1990s.
|
| Modifier and Type | Method and Description |
|---|---|
static FixedLayoutFormats |
fromExtension(String extension)
Retrieves an instance of the specified type
FixedLayoutFormats that has the specified file extension. |
static FixedLayoutFormats |
fromString(String extension)
Converts a string representing a file extension to a
FixedLayoutFormats object. |
static List<FixedLayoutFormats> |
getAll()
Gets an enumerable collection of all
FixedLayoutFormats. |
equals, equals, fromExtension, fromMime, getExtension, getFormatFamily, getMime, hashCode, toStringareEqual, areNotEqual, equals, equalsName, fromId, fromName, fromName, fromValue, getAll, getId, getName, notEqualsName, toInt, toString, toStringpublic static final FixedLayoutFormats Pdf
Portable Document Format (PDF) is a type of document created by Adobe back in 1990s. The purpose of this file format was to introduce a standard for representation of documents and other reference material in a format that is independent of application software, hardware as well as Operating System.
Learn more about this file format <a href="https://docs.fileformat.com/pdf/">here</a>.
public static FixedLayoutFormats fromExtension(String extension)
Retrieves an instance of the specified type FixedLayoutFormats that has the specified file extension.
extension - The file extension of the document format.FixedLayoutFormats with the specified file extension.IllegalArgumentException - Thrown when no matching document format is found.public static FixedLayoutFormats fromString(String extension)
Converts a string representing a file extension to a FixedLayoutFormats object.
extension - The file extension to convert. If the extension contains multiple periods, the part after the last period is used.FixedLayoutFormats object corresponding to the specified file extension.FixedLayoutFormats - Thrown when the specified file extension is null.public static List<FixedLayoutFormats> getAll()
Gets an enumerable collection of all FixedLayoutFormats.
IEnumerable{FixedLayoutFormats} containing all instances of FixedLayoutFormats.Copyright © 2024. All rights reserved.