The Aspose.Words.Loading namespace provides classes and enumerations that allow to specify additional options when loading documents.
Classes | |
class | ChmLoadOptions |
Allows to specify additional options when loading CHM document into a Document object. To learn more, visit the Specify Load Options documentation article. More... | |
class | DocumentLoadingArgs |
An argument passed into Notify(). To learn more, visit the Specify Load Options documentation article. More... | |
class | HtmlLoadOptions |
Allows to specify additional options when loading HTML document into a Document object. To learn more, visit the Specify Load Options documentation article. More... | |
interface | IDocumentLoadingCallback |
Implement this interface if you want to have your own custom method called during loading a document. More... | |
interface | IResourceLoadingCallback |
Implement this interface if you want to control how Aspose.Words loads external resource when importing a document and inserting images using DocumentBuilder. More... | |
class | LanguagePreferences |
Allows to set up language preferences. To learn more, visit the Specify Load Options documentation article. More... | |
class | LoadOptions |
Allows to specify additional options (such as password or base URI) when loading a document into a Document object. To learn more, visit the Specify Load Options documentation article. More... | |
class | PdfLoadOptions |
Allows to specify additional options when loading Pdf document into a Document object. To learn more, visit the Specify Load Options documentation article. More... | |
class | ResourceLoadingArgs |
Provides data for the ResourceLoading() method. More... | |
class | RtfLoadOptions |
Allows to specify additional options when loading Rtf document into a Document object. To learn more, visit the Specify Load Options documentation article. More... | |
class | TxtLoadOptions |
Allows to specify additional options when loading Text document into a Document object. To learn more, visit the Specify Load Options documentation article. More... | |
Enumerations | |
enum class | BlockImportMode |
Specifies how properties of block-level elements are imported from HTML-based documents. More... | |
enum class | DocumentDirection |
Allows to specify the direction to flow the text in a document. More... | |
enum class | EditingLanguage |
Specifies the editing language. More... | |
enum class | HtmlControlType |
Type of document nodes that represent <input> and <select> elements imported from HTML. More... | |
enum class | ResourceLoadingAction |
Specifies the mode of resource loading. To learn more, visit the Specify Load Options documentation article. More... | |
enum class | ResourceType |
Type of loaded resource. More... | |
enum class | TxtLeadingSpacesOptions |
Specifies available options for leading space handling during import from Text file. More... | |
enum class | TxtTrailingSpacesOptions |
Specifies available options for trailing spaces handling during import from Text file. More... | |
|
strong |
Specifies how properties of block-level elements are imported from HTML-based documents.
Enumerator | |
---|---|
Merge | Properties of parent blocks are merged and stored on child elements (i.e. paragraphs or tables). Properties of parent blocks are merged as follows: margins are added together; borders of higher-level blocks are discarded and only the most inner-level borders are preserved. As a result, when this mode is specified, some formatting of blocks from the original document will be lost. On the other hand, since all merged block-level properties are stored on document nodes, all formating in the resulting document will be available for modification. |
Preserve | Properties of parent blocks are imported to a special logical structure and are stored separately from document nodes. Only margins and borders of 'body', 'div', and 'blockquote' HTML elements are imported. Properties of each HTML element are stored individually. This mode allows to better preserve borders and margins seen in the HTML document and get better conversion results. The downside is that the resulting document gets harder to modify, since borders and margins stored in the logical structure are not available for editing. This mode mimics MS Word's behavior regarding import of block properties. |
|
strong |
|
strong |
Specifies the editing language.
Shows how to apply language preferences when loading a document.
|
strong |
|
strong |
Specifies the mode of resource loading. To learn more, visit the Specify Load Options documentation article.
Shows how to customize the process of loading external resources into a document.
|
strong |
Type of loaded resource.
Shows how to customize the process of loading external resources into a document.
Enumerator | |
---|---|
Image | Image. |
CssStyleSheet | Css style sheet. |
Document |
|
strong |
Specifies available options for leading space handling during import from Text file.
Shows how to trim whitespace when loading plaintext documents.
Enumerator | |
---|---|
ConvertToIndent | |
Trim | |
Preserve |
|
strong |
Specifies available options for trailing spaces handling during import from Text file.
Shows how to trim whitespace when loading plaintext documents.
Enumerator | |
---|---|
Trim | |
Preserve |