New to Telerik UI for WPFStart a free 30-day trial

Describes possible types of resolution when sections are merged during RadDocument merging.

Definition

Namespace:Telerik.Windows.Documents.Model.Merging

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public enum SectionPropertiesResolutionMode

Fields

Inserts the document elements from the source Section into the target without a preceding SectionBreakType.

C#
NoSectionBreak = 0

Inserts a SectionBreakType as it is defined in the source Section and preserves its SectionProperties.

C#
Source = 1

Inserts a Continuous and preserves the SectionProperties of the source Section.

C#
SourceStartContinuous = 6

Inserts a EvenPage and preserves the SectionProperties of the source Section.

C#
SourceStartOnEvenPage = 4

Inserts a NextPage and preserves the SectionProperties of the source Section.

C#
SourceStartOnNextPage = 3

Inserts a OddPage and preserves the SectionProperties of the source Section.

C#
SourceStartOnOddPage = 5

Inserts a SectionBreakType as it is defined in the source Section and copies the SectionProperties from the target Section.

C#
Target = 2