FlowOrderedLayoutBox
Represents a layout box that organizes its child elements in a specific order within a flow layout.
Definition
Namespace:Telerik.Windows.Documents.Layout
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public abstract class FlowOrderedLayoutBox : LayoutBox
Inheritance: objectLayoutElementLayoutBoxFlowOrderedLayoutBox
Derived Classes:
Inherited Members
Constructors
public FlowOrderedLayoutBox(DocumentElement associatedDocumentElement, DocumentStructureCollection collection, bool isFragment)
public FlowOrderedLayoutBox(DocumentElement associatedDocumentElement, DocumentStructureCollection collection)
public FlowOrderedLayoutBox(DocumentElement associatedDocumentElement)
Properties
Gets a value indicating whether the current FlowOrderedLayoutBox is the last box in the layout.
public override bool IsLastBox { get; }
Overrides:
Gets the next associated layout box in the flow layout.
public FlowOrderedLayoutBox NextAssociatedBox { get; }
Gets the next box in the ordered layout sequence.
public FlowOrderedLayoutBox NextBox { get; }
Gets the previous associated layout box in the flow order layout.
public FlowOrderedLayoutBox PreviousAssociatedBox { get; }
The previous layout box associated with the current box, or null if there is no previous associated box.
Gets the previous layout box in the flow ordered layout sequence.
public FlowOrderedLayoutBox PreviousBox { get; }
Methods
Links the current FlowOrderedLayoutBox instance to another FlowOrderedLayoutBox.
public void LinkAfter(FlowOrderedLayoutBox existingBox)
The FlowOrderedLayoutBox to link after the current instance.
Creates a pair of FlowOrderedLayoutBox instances, establishing a relationship between the first and second box provided.
public static void Pair(FlowOrderedLayoutBox firstBox, FlowOrderedLayoutBox secondBox)
The first FlowOrderedLayoutBox in the pair.
secondBoxFlowOrderedLayoutBoxThe second FlowOrderedLayoutBox in the pair.
Removes the association of the current FlowOrderedLayoutBox from its parent layout.
public void Unlink()