ClassTableCellLayoutBox
Represents the layout box for a cell in a table, providing properties and methods
to manage the visual representation and positioning of the cell's content.
Definition
Namespace:Telerik.Windows.Documents.Layout
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public class TableCellLayoutBox : FlowOrderedLayoutBox
Inheritance: objectLayoutElementLayoutBoxFlowOrderedLayoutBoxTableCellLayoutBox
Inherited Members
Constructors
TableCellLayoutBox(DocumentElement, DocumentStructureCollection)
Declaration
public TableCellLayoutBox(DocumentElement associatedDocumentElement, DocumentStructureCollection collection)
Parameters
associatedDocumentElement
collection
TableCellLayoutBox(DocumentElement, DocumentStructureCollection, bool)
Declaration
public TableCellLayoutBox(DocumentElement associatedDocumentElement, DocumentStructureCollection collection, bool isFragment)
Parameters
associatedDocumentElement
collection
isFragment
Properties
AssociatedTableCell
Gets the table cell that is associated with this layout box.
Declaration
public TableCell AssociatedTableCell { get; }
Property Value
HasVisualRepresentation
Gets a value indicating whether the table cell has a visual representation.
Declaration
public override bool HasVisualRepresentation { get; }
Property Value
Overrides
IsTopContainer
Gets a value indicating whether the current cell is a top-level container in a table layout.
Declaration
public override bool IsTopContainer { get; }
Property Value
Overrides
Methods
ArrangeOverride(SizeF)
Arranges the LayoutElement to its final location. The element must call the Arrange method of each of its children.
Declaration
protected override SizeF ArrangeOverride(SizeF finalSize)
Parameters
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
Remarks
In this method call to the Arrange method of each child must be made.
CreateLayoutElement()
Creates a layout element for the table cell.
Declaration
public override LayoutElement CreateLayoutElement()
Returns
A new instance of the layout element associated with the table cell.
Overrides
MeasureOverride(SizeF)
Measures the space required by the LayoutElement Used by the layout system.
Declaration
protected override SizeF MeasureOverride(SizeF availableSize)
Parameters
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
Remarks
In this method call to the Measure method of each child must be made.