Version

Configuring the View Split (xamRichTextEditor)

Topic Overview

Purpose

This topic explains how to configure the xamRichTextEditor ™ allowing users to perform a split view of the document.

Required background

The following topics are prerequisites to understanding this topic:

Topic Purpose

This topic provides an overview of the features supported by the xamRichTextEditor control.

This topic explains the document’s content logical structure you can use to edit the contents in the xamRichTextEditor programmatically.

This topic provides detailed instructions to help you get up and running as quickly as possible with the xamRichTextEditor .

In this topic

This topic contains the following sections:

Splitting Configuration Summary

Splitting configuration summary chart

The following table briefly explains the configurable aspects of the xamRichTextEditor control and maps them to their specific properties.

Configurable aspect Details Properties

This configuration enables or disables the user to split the document view

Document View Splitting

Overview

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.

Property settings

In order to: Use this property: And set it to:

Allow the user to split the document view

AllowDocumentViewSplitting

true

Disallow the user to split the document view

AllowDocumentViewSplitting

false

Example

The code snippet below demonstrates how to allow document view splitting:

In C#:

this.xamRichTextEditor1.AllowDocumentViewSplitting = true;

In Visual Basic:

Me.xamRichTextEditor1.AllowDocumentViewSplitting = True

Related Topics

The following topic provides additional information related to this topic.

Topic Purpose

This topic explains the xamRichTextEditor control’s view splitting from a developer’s perspective.