this.xamRichTextEditor1.AllowDocumentViewSplitting = true;
This topic explains how to configure the xamRichTextEditor ™ allowing users to perform a split view of the document.
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 their specific properties.
Setting the AllowDocumentViewSplitting
to either true
or false
alternately shows or hides the splitting handle effectively enabling or disabling a user’s ability to split the document view by showing or hiding the view splitting handle.
The code snippet below demonstrates how to allow document view splitting:
In C#:
this.xamRichTextEditor1.AllowDocumentViewSplitting = true;
In Visual Basic:
Me.xamRichTextEditor1.AllowDocumentViewSplitting = True
The following topic provides additional information related to this topic.