ExportUnderlineFormatting
MarkdownSaveOptions.ExportUnderlineFormatting property
Ruft einen booleschen Wert ab oder legt ihn fest, der angibt, ob die Unterstreichungstextformatierung als Folge von zwei Pluszeichen “++” exportiert werden soll. Der Standardwert istFALSCH
.
public bool ExportUnderlineFormatting { get; set; }
Beispiele
Zeigt, wie Unterstreichungsformatierungen als ++ exportiert werden.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.Underline = Underline.Single;
builder.Write("Lorem ipsum. Dolor sit amet.");
MarkdownSaveOptions saveOptions = new MarkdownSaveOptions() { ExportUnderlineFormatting = true };
doc.Save(ArtifactsDir + "MarkdownSaveOptions.ExportUnderlineFormatting.md", saveOptions);
Siehe auch
- class MarkdownSaveOptions
- namensraum Aspose.Words.Saving
- Montage Aspose.Words