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