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

Represents the end marker for an annotation range in a RadDocument.

Definition

Namespace:Telerik.Windows.Documents.Model

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public abstract class AnnotationRangeEnd : AnnotationRangeMarkerBase

Inheritance: objectDocumentElementInlineAnnotationMarkerBaseAnnotationRangeMarkerBaseAnnotationRangeEnd...

Derived Classes: BookmarkRangeEndCodeAnnotationRangeEndCommentRangeEndFieldRangeEndBasePermissionRangeEndRevisionRangeEndSdtRangeEnd...

Inherited Members AnnotationMarkerBase.CreateLayoutBox(DocumentStructureCollection)AnnotationMarkerBase.CopyPropertiesFromOverride(DocumentElement)AnnotationMarkerBase.AnnotationIDAnnotationMarkerBase.SkipPositionBeforeAnnotationMarkerBase.SkipPositionAfterAnnotationMarkerBase.IsWordSeparatorAnnotationMarkerBase.IsCopyableAnnotationMarkerBase.DeleteBehaviorAnnotationMarkerBase.BackspaceBehaviorAnnotationMarkerBase.DeleteSelectedBehaviorInline.CopyFromPositionToEndOfInline(DocumentPosition, DocumentPosition)Inline.CopyFromStartOfInlineToEndPosition(DocumentPosition)Inline.CopyContentFromOverride(DocumentElement)Inline.CopyContentFrom(DocumentElement)Inline.FieldStartDocumentElement.CreateNewElementInstance()DocumentElement.GetStyleProperty(IStylePropertyDefinition)DocumentElement.GetStyleProperty(string)DocumentElement.EnumerateChildrenOfType<T>()DocumentElement.GetParentOfType<T>()DocumentElement.CreateLayoutBox()DocumentElement.CopyPropertiesFrom(DocumentElement)DocumentElement.CopyPropertiesFromStyle(StyleDefinition)DocumentElement.ExtractStyleFromProperties()DocumentElement.ExtractStyleFromLocalProperties()DocumentElement.InvalidateAssociatedBoxesArrange()DocumentElement.InvalidateAssociatedBoxesMeasure()DocumentElement.InvalidateAssociatedBoxesLayout()DocumentElement.GetAssociatedLayoutBoxes()DocumentElement.GetRootDocument()DocumentElement.CreateDeepCopy()DocumentElement.CreateShallowCopy()DocumentElement.GetPropertyValueSource(IStylePropertyDefinition)DocumentElement.ClearValue(IStylePropertyDefinition)DocumentElement.OnRemoved()DocumentElement.OnStyleChanging()DocumentElement.OnStyleChanged()DocumentElement.OnStylePropertyChanged(StylePropertyChangeEventArgs)DocumentElement.OnParentChanging()DocumentElement.OnParentChanged()DocumentElement.ChildIndexDocumentElement.HasStyleDocumentElement.StyleDocumentElement.StyleNameDocumentElement.TagDocumentElement.FirstLayoutBoxDocumentElement.IsFirstLayoutBoxInitializedDocumentElement.DocumentElementsDocumentElement.ParentDocumentElement.ChildrenDocumentElement.PreviousSiblingDocumentElement.NextSiblingDocumentElement.CursorDocumentElement.StyleChangingDocumentElement.StyleChangedDocumentElement.StylePropertyChangedDocumentElement.ParentChangingDocumentElement.ParentChangedDocumentElement.PropertyValueChanged...

Constructors

Initializes a new instance of the AnnotationRangeEnd class.

C#
public AnnotationRangeEnd()

Properties

Gets a value indicating whether a new paired AnnotationRangeStart will be created during copy operation.

Default value is false.

This property is provided for backward compatibility.

C#
protected virtual bool CreatePairedStartOnCopy { get; }
Property Value:

Should pair annotation.

Gets a value indicating whether this instance is paired with an AnnotationRangeStart.

C#
public override bool IsPaired { get; }
Property Value:

true if this instance is paired; otherwise, false.

Overrides: AnnotationRangeMarkerBase.IsPaired

Gets or sets the associated AnnotationRangeStart

C#
public AnnotationRangeStart Start { get; set; }
Property Value:

The start.

Methods

Creates an AnnotationRangeStart and pairs it with the current instance.

C#
public virtual AnnotationRangeStart CreatePairedStart()
Returns:

AnnotationRangeStart

The created AnnotationRangeStart.

Creates the range start instance.

C#
protected abstract AnnotationRangeStart CreateRangeStartInstance()
Returns:

AnnotationRangeStart

The created AnnotationRangeStart.

Pairs the current instance with an AnnotationRangeStart.

C#
public void PairWithStart(AnnotationRangeStart annotationRangeStart)
Parameters:annotationRangeStartAnnotationRangeStart

The annotation range start.

Pairs the current instance with an AnnotationRangeStart.

C#
protected virtual void PairWithStartOverride(AnnotationRangeStart annotationRangeStart)
Parameters:annotationRangeStartAnnotationRangeStart

The annotation range start.

Updates the annotation identifier.

C#
public virtual void UpdateAnnotationID()