this.xamRichTextEditor1.TextUpdateMode = RichTextDocumentViewTextUpdateMode.Insert;
This topic explains how to configure several useful content editing features of the xamRichTextEditor ™ control.
The following topics are prerequisites to understanding this topic:
This topic contains the following sections:
The following table briefly explains the configurable aspects of the xamRichTextEditor control and maps them to the properties that create them.
Use the following property to get or set the manner of adding new text to a document.
The following table maps the desired configuration to its respective property settings.
The following example show how to set the insert mode for accepting new text when applied to a document’s content:
In C#:
this.xamRichTextEditor1.TextUpdateMode = RichTextDocumentViewTextUpdateMode.Insert;
In Visual Basic:
Me.xamRichTextEditor1.TextUpdateMode = RichTextDocumentViewTextUpdateMode.Insert
Use the following property to get or set hidden paragraph mark rendering in the xamRichTextEditor .
The following table maps the desired configuration to its respective property settings.
The following example shows how to enable the displaying of hidden symbols:
In C#:
this.xamRichTextEditor1.HiddenSymbolDisplayMode = HiddenSymbolDisplayMode.DisplayAllHiddenSymbols;
In Visual Basic:
Me.xamRichTextEditor1.HiddenSymbolDisplayMode = HiddenSymbolDisplayMode.DisplayAllHiddenSymbols
The following topics provide additional information related to this topic.