LayoutOptions.ShowParagraphMarks
LayoutOptions ShowParagraphMarks property. Gets or sets indication of whether paragraph marks are rendered. Default is false.
LayoutOptions.ShowParagraphMarks property
Gets or sets indication of whether paragraph marks are rendered. Default is false
.
public bool ShowParagraphMarks { get; set; }
Examples
Shows how to show paragraph marks in a rendered output document.
ConverterContext context = new ConverterContext();
// Enable paragraph marks to show the ends of paragraphs with a pilcrow (¶) symbol when we render the document.
context.LayoutOptions.ShowParagraphMarks = true;
Converter.Create(context)
.From(MyDir + "Simple.docx")
.To(ArtifactsDir + "LayoutOptions.ShowParagraphMarks.pdf")
.Execute();
See Also
- class LayoutOptions
- namespace Wordize.Layout
- assembly Wordize