<ig:XamRichTextEditor
x:Name="xamRichTextEditor1"
IsMultiSelectEnabled="True">
</ig:XamRichTextEditor>
This topic explains how to turn on the xamRichTextEditor ™ control’s multiple selection functionality.
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.
The following procedure enables the xamRichTextEditor control’s multiple selection feature, disabled by default. This feature allows you or the user to select multiple chunks of the document’s content called ranges.
The following table maps the desired configuration to its specific property settings.
The following code snippets shows how to allow multiple selection in XAML and C#:
In XAML:
<ig:XamRichTextEditor
x:Name="xamRichTextEditor1"
IsMultiSelectEnabled="True">
</ig:XamRichTextEditor>
In C#:
this.xamRichTextEditor1.IsMultiSelectEnabled = true;
In Visual Basic:
Me.xamRichTextEditor1.IsMultiSelectEnabled = True
The following topic provides additional information related to this topic.