Class InlineBoxPositionHandler
Handles the positioning of inline boxes in Telerik documents.
Namespace: Telerik.Windows.Documents
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class InlineBoxPositionHandler : PositionHandler
Constructors
InlineBoxPositionHandler(InlineBoxPositionHandler)
Declaration
public InlineBoxPositionHandler(InlineBoxPositionHandler toCopy)
Parameters
InlineBoxPositionHandler
toCopy
|
InlineBoxPositionHandler(InlineLayoutBox)
Properties
CanMoveToNext
Determines whether the specified position can be moved to the next inline box.
Declaration
public override bool CanMoveToNext { get; }
Property Value
System.Boolean
|
Overrides
CanMoveToPrevious
Determines whether the specified position can move to the previous inline box.
Declaration
public override bool CanMoveToPrevious { get; }
Property Value
System.Boolean
|
Overrides
CurrentInline
Gets the current inline box position handler.
Declaration
public InlineLayoutBox CurrentInline { get; }
Property Value
InlineLayoutBox
The current InlineBoxPositionHandler instance. |
Location
Represents the location of an inline box within a document.
Declaration
public override PointF Location { get; }
Property Value
PointF
|
Overrides
Methods
Clone()
Creates a copy of the current InlineBoxPositionHandler instance.
Declaration
public override PositionHandler Clone()
Returns
PositionHandler
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
PositionHandler
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
System.String
A string that represents the current instance. |