TableRowLayoutBox
Represents a layout box for a table row in the Telerik Windows Documents layout system.
Definition
Namespace:Telerik.Windows.Documents.Layout
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public class TableRowLayoutBox : FlowOrderedLayoutBox
Inheritance: objectLayoutElementLayoutBoxFlowOrderedLayoutBoxTableRowLayoutBox
Inherited Members
Constructors
public TableRowLayoutBox(DocumentElement associatedDocumentElement, DocumentStructureCollection collection, bool isFragment)
public TableRowLayoutBox(DocumentElement associatedDocumentElement, DocumentStructureCollection collection)
Properties
Gets the associated table row for this table row layout box.
public TableRow AssociatedTableRow { get; }
Gets the bounding child boxes of the table row layout.
public override bool BoundsChildBoxes { get; }
Overrides:
Methods
Arranges the LayoutElement to its final location. The element must call the Arrange method of each of its children.
protected override SizeF ArrangeOverride(SizeF finalSize)
The size that is available for element.
Returns:The rectangle occupied by the element. Usually finalSize. Should you return different size, the Layout system will restart measuring and rearranging the items. That could lead to infinite recursion.
Overrides:
In this method call to the Arrange method of each child must be made.
Creates and returns a layout element for the table row.
public override LayoutElement CreateLayoutElement()
A LayoutElement that represents the layout for the table row.
Overrides:
Retrieves the position of the TableRowLayoutBox.
public override PositionHandler GetPositionHandler()
The position of the current TableRowLayoutBox as a Point object.
Overrides:
Measures the space required by the LayoutElement Used by the layout system.
protected override SizeF MeasureOverride(SizeF availableSize)
The size that is available to the LayoutElement. The available size can be infinity (to take the full size of the element)
Returns:The minimum size required by the element to be completely visible. Cannot be infinity.
Overrides:
In this method call to the Measure method of each child must be made.