ClassInlineBoxPositionHandler
Handles the positioning of inline boxes in Telerik documents.
Definition
Namespace:Telerik.Windows.Documents
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public class InlineBoxPositionHandler : PositionHandler
Inheritance: objectPositionHandlerInlineBoxPositionHandler
Derived Classes:
Inherited Members
Constructors
InlineBoxPositionHandler(InlineBoxPositionHandler)
Declaration
public InlineBoxPositionHandler(InlineBoxPositionHandler toCopy)
Parameters
toCopy
InlineBoxPositionHandler(InlineLayoutBox)
Declaration
public InlineBoxPositionHandler(InlineLayoutBox box)
Parameters
box
Properties
CanMoveToNext
Determines whether the specified position can be moved to the next inline box.
Declaration
public override bool CanMoveToNext { get; }
Property Value
Overrides
CanMoveToPrevious
Determines whether the specified position can move to the previous inline box.
Declaration
public override bool CanMoveToPrevious { get; }
Property Value
Overrides
CurrentInline
Gets the current inline box position handler.
Declaration
public InlineLayoutBox CurrentInline { get; }
Property Value
The current InlineBoxPositionHandler instance.
Methods
Clone()
Creates a copy of the current InlineBoxPositionHandler instance.
Declaration
public override PositionHandler Clone()
Returns
A new instance of InlineBoxPositionHandler that is a clone of the current instance.
Overrides
GetParentHandler()
Retrieves the parent inline box position handler associated with the current instance.
Declaration
public override PositionHandler GetParentHandler()
Returns
The parent InlineBoxPositionHandler if one exists; otherwise, null.
Overrides
MoveToFirst()
Moves the position to the first inline box within the current context.
Declaration
public override void MoveToFirst()
Overrides
MoveToLast()
Moves the inline box position to the last available position.
Declaration
public override void MoveToLast()
Overrides
MoveToNext()
Moves to the next inline box position in the document.
Declaration
public override void MoveToNext()
Overrides
MoveToPrevious()
Moves the position to the previous inline box within the document.
Declaration
public override void MoveToPrevious()
Overrides
ToString()
Converts the current instance of the InlineBoxPositionHandler class to its string representation.
Declaration
public override string ToString()
Returns
A string that represents the current instance.
Overrides