LayoutOptions.ShowHiddenText

LayoutOptions ShowHiddenText property. Gets or sets indication of whether hidden text in the document is rendered. Default is false.

LayoutOptions.ShowHiddenText property

Gets or sets indication of whether hidden text in the document is rendered. Default is false.

public bool ShowHiddenText { get; set; }

Remarks

This property affects all hidden content, not just text.

Examples

Demonstrates how to display hidden text in the rendered document.

ConverterContext context = new ConverterContext();
context.LayoutOptions.ShowHiddenText = true;

Converter.Create(context)
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "LayoutOptions.ShowHiddenText.pdf")
    .Execute();

See Also