Class AnnotationRangeStart
Represents the start marker for an annotation range in a RadDocument.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Model
Assembly: Telerik.Windows.Documents.dll
Syntax
public abstract class AnnotationRangeStart : AnnotationRangeMarkerBase
Constructors
AnnotationRangeStart()
Declaration
protected AnnotationRangeStart()
Properties
End
Gets or sets the associated AnnotationRangeEnd.
Declaration
public AnnotationRangeEnd End { get; set; }
Property Value
AnnotationRangeEnd
The end. |
IsPaired
Gets a value indicating whether this instance is paired with an AnnotationRangeEnd.
Declaration
public override bool IsPaired { get; }
Property Value
System.Boolean
|
Overrides
IsRangeDeletable
Gets a value indicating whether this range can be deleted.
Declaration
public virtual bool IsRangeDeletable { get; }
Property Value
System.Boolean
|
IsRangeEditable
Gets a value indicating whether this range is editable.
Declaration
public virtual bool IsRangeEditable { get; }
Property Value
System.Boolean
|
ShouldSpellcheck
Gets a value indicating whether the contents of the annotation should be included in the spellcheck.
Declaration
public virtual bool ShouldSpellcheck { get; }
Property Value
System.Boolean
|
SkipPositionsInRange
Determines if the CaretPosition will be put before or after the annotation marker.
If the value of this property is true
for an AnnotationRangeStart, then if you move the caret to the annotation start and start typing,
the newly inserted text will be considered as part of the annotation. Vice versa, if it is set to false
, the typed text will be inserted before the annotation.
Declaration
public virtual bool SkipPositionsInRange { get; }
Property Value
System.Boolean
|