Aspose::Words::Loading::MarkdownLoadOptions class
Contents
[
Hide
]MarkdownLoadOptions class
Allows to specify additional options when loading Markdown document into a Document object.
class MarkdownLoadOptions : public Aspose::Words::Loading::LoadOptions
Methods
Method | Description |
---|---|
Equals(System::SharedPtr<System::Object>) override | Determines whether the specified object is equal in value to the current object. |
get_BaseUri() const | Gets or sets the string that will be used to resolve relative URIs found in the document into absolute URIs when required. Can be null or empty string. Default is null. |
get_ConvertMetafilesToPng() const | Gets or sets whether to convert metafile(Wmf or Emf) images to Png image format. |
get_ConvertShapeToOfficeMath() const | Gets or sets whether to convert shapes with EquationXML to Office Math objects. |
get_Encoding() const | Gets or sets the encoding that will be used to load an HTML, TXT, or CHM document if the encoding is not specified inside the document. Can be null. Default is null. |
get_FontSettings() const | Allows to specify document font settings. |
get_IgnoreOleData() const | Specifies whether to ignore the OLE data. |
get_ImportUnderlineFormatting() const | Gets or sets a boolean value indicating either to recognize a sequence of two plus characters “++” as underline text formatting. The default value is false. |
get_LanguagePreferences() const | Gets language preferences that will be used when document is loading. |
get_LoadFormat() const | Specifies the format of the document to be loaded. Default is Auto. |
get_MswVersion() const | Allows to specify that the document loading process should match a specific MS Word version. Default value is Word2019 |
get_Password() const | Gets or sets the password for opening an encrypted document. Can be null or empty string. Default is null. |
get_PreserveEmptyLines() const | Gets or sets a boolean value indicating whether to preserve empty lines while load a Markdown document. The default value is false. Normally, empty lines between block-level elements in Markdown are ignored. Empty lines at the beginning and end of the document are also ignored. This option allows to import such empty lines. |
get_PreserveIncludePictureField() const | Gets or sets whether to preserve the INCLUDEPICTURE field when reading Microsoft Word formats. The default value is false. |
get_ProgressCallback() const | Called during loading a document and accepts data about loading progress. |
get_RecoveryMode() const | Defines how the document should be handled if errors occur during loading. Use this property to specify whether the system should attempt to recover the document or follow another defined behavior. The default value is TryRecover. |
get_ResourceLoadingCallback() const | Allows to control how external resources (images, style sheets) are loaded when a document is imported from HTML, MHTML. |
get_SoftLineBreakCharacter() const | Gets or sets a character value representing soft line break. The default value is SPACE (U+0020). |
get_TempFolder() const | Allows to use temporary files when reading document. By default this property is null and no temporary files are used. |
get_UpdateDirtyFields() const | Specifies whether to update the fields with the dirty attribute. |
get_UseSystemLcid() const | Gets or sets whether to use LCID value obtained from Windows registry to determine page setup default margins. |
get_WarningCallback() const | Called during a load operation, when an issue is detected that might result in data or formatting fidelity loss. |
GetType() const override | |
Is(const System::TypeInfo&) const override | |
LoadOptions() | Initializes a new instance of this class with default values. |
LoadOptions(const System::String&) | A shortcut to initialize a new instance of this class with the specified password to load an encrypted document. |
LoadOptions(Aspose::Words::LoadFormat, const System::String&, const System::String&) | A shortcut to initialize a new instance of this class with properties set to the specified values. |
MarkdownLoadOptions() | Initializes a new instance of MarkdownLoadOptions class. |
set_BaseUri(const System::String&) | Setter for Aspose::Words::Loading::LoadOptions::get_BaseUri. |
set_ConvertMetafilesToPng(bool) | Setter for Aspose::Words::Loading::LoadOptions::get_ConvertMetafilesToPng. |
set_ConvertShapeToOfficeMath(bool) | Setter for Aspose::Words::Loading::LoadOptions::get_ConvertShapeToOfficeMath. |
set_Encoding(const System::SharedPtr<System::Text::Encoding>&) | Setter for Aspose::Words::Loading::LoadOptions::get_Encoding. |
set_FontSettings(const System::SharedPtr<Aspose::Words::Fonts::FontSettings>&) | Setter for Aspose::Words::Loading::LoadOptions::get_FontSettings. |
set_IgnoreOleData(bool) | Setter for Aspose::Words::Loading::LoadOptions::get_IgnoreOleData. |
set_ImportUnderlineFormatting(bool) | Setter for Aspose::Words::Loading::MarkdownLoadOptions::get_ImportUnderlineFormatting. |
set_LoadFormat(Aspose::Words::LoadFormat) | Setter for Aspose::Words::Loading::LoadOptions::get_LoadFormat. |
set_MswVersion(Aspose::Words::Settings::MsWordVersion) | Setter for Aspose::Words::Loading::LoadOptions::get_MswVersion. |
set_Password(const System::String&) | Setter for Aspose::Words::Loading::LoadOptions::get_Password. |
set_PreserveEmptyLines(bool) | Setter for Aspose::Words::Loading::MarkdownLoadOptions::get_PreserveEmptyLines. |
set_PreserveIncludePictureField(bool) | Setter for Aspose::Words::Loading::LoadOptions::get_PreserveIncludePictureField. |
set_ProgressCallback(const System::SharedPtr<Aspose::Words::Loading::IDocumentLoadingCallback>&) | Called during loading a document and accepts data about loading progress. |
set_RecoveryMode(Aspose::Words::Loading::DocumentRecoveryMode) | Setter for Aspose::Words::Loading::LoadOptions::get_RecoveryMode. |
set_ResourceLoadingCallback(const System::SharedPtr<Aspose::Words::Loading::IResourceLoadingCallback>&) | Allows to control how external resources (images, style sheets) are loaded when a document is imported from HTML, MHTML. |
set_SoftLineBreakCharacter(char16_t) | Setter for Aspose::Words::Loading::MarkdownLoadOptions::get_SoftLineBreakCharacter. |
set_TempFolder(const System::String&) | Setter for Aspose::Words::Loading::LoadOptions::get_TempFolder. |
set_UpdateDirtyFields(bool) | Setter for Aspose::Words::Loading::LoadOptions::get_UpdateDirtyFields. |
set_UseSystemLcid(bool) | Setter for Aspose::Words::Loading::LoadOptions::get_UseSystemLcid. |
set_WarningCallback(const System::SharedPtr<Aspose::Words::IWarningCallback>&) | Called during a load operation, when an issue is detected that might result in data or formatting fidelity loss. |
static Type() |
Examples
Shows how to preserve empty line while load a document.
System::String mdText = System::String::Format(u"{0}Line1{1}{2}Line2{3}{4}", System::Environment::get_NewLine(), System::Environment::get_NewLine(), System::Environment::get_NewLine(), System::Environment::get_NewLine(), System::Environment::get_NewLine());
{
auto stream = System::MakeObject<System::IO::MemoryStream>(System::Text::Encoding::get_UTF8()->GetBytes(mdText));
auto loadOptions = System::MakeObject<Aspose::Words::Loading::MarkdownLoadOptions>();
loadOptions->set_PreserveEmptyLines(true);
auto doc = System::MakeObject<Aspose::Words::Document>(stream, loadOptions);
ASSERT_EQ(u"\rLine1\r\rLine2\r\f", doc->GetText());
}
See Also
- Class LoadOptions
- Namespace Aspose::Words::Loading
- Library Aspose.Words for C++