Version

Managing View Splitting (xamRichTextEditor)

Topic Overview

Purpose

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

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 explains briefly the configurable aspects of the xamRichTextEditor control and maps them to properties that configure them.

Configurable aspect Details Properties

You can obtain the document view split state.

You can set the document view split state.

  • IsDocumentViewSplit

Obtain Current Split State

Overview

You can obtain the document view split state.

Property settings

In order to: Use this property: And:

Obtain the document view split state

IsDocumentViewSplit

Obtain its value.

Example

The code snippet below demonstrates how to obtain the document view split state:

In C#:

bool split = this.xamRichTextEditor1.IsDocumentViewSplit;

In Visual Basic:

Dim split As Boolean = Me.xamRichTextEditor1.IsDocumentViewSplit

Set Current Split State

Overview

You can set the document view split state. When you split the document the xamRichTextEditor will have two document views with equal initial height (you are not able to control the height programmatically, however the user may resize them). When you turn off document view split, the bottom view will remains.

Property settings

In order to: Use this property: And:

Set the document view split state

IsDocumentViewSplit

Set it to true or false.

Example

The code snippet below demonstrates how to set the document view split state:

In C#:

this.xamRichTextEditor1.IsDocumentViewSplit = true;

In Visual Basic:

Me.xamRichTextEditor1.IsDocumentViewSplit = True

Related Topics

The following topics provide additional information related to this topic.

Topic Purpose

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