TableRow
Represents a table row element.
Definition
Namespace:Telerik.Windows.Documents.Model
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public class TableRow : Block
Inheritance: objectDocumentElementBlockTableRow
Inherited Members
Constructors
public TableRow()
Fields
public static readonly StylePropertyDefinition<double?, TableRowProperties> HeightProperty
public static readonly StylePropertyDefinition<bool?, TableRowProperties> RepeatOnEveryPageProperty
Properties
Gets a collection of TableCell objects representing the cells.
public TableCellCollection Cells { get; }
The cells.
Represents information about the revisions made to a specific table row element.
[XamlCompositePropertySerializable]
public DocumentElementRevisionInfo ElementRevisionInfo { get; set; }
Gets the index of the grid row.
public int GridRowIndex { get; }
The index of the grid row.
Gets a value that indicates whether the table row has revisions.
public bool HasRevisions { get; }
Gets or sets the height of the table row.
[XamlSerializable]
public double Height { get; set; }
A double value representing the height of the table row in measurement units (e.g., pixels).
Gets a value indicating whether the table row is marked as deleted.
public bool IsDeleted { get; }
Gets a value indicating whether this table row is the first row in the table.
public bool IsFirst { get; }
Gets a value indicating whether the table row has been inserted.
public bool IsInserted { get; }
true if the row is inserted; otherwise, false.
Gets a value indicating whether the current table row is the last row in the table.
public bool IsLast { get; }
true if the row is the last row; otherwise, false.
Gets or sets a value indicating whether the table row should be repeated on every page.
[XamlSerializable(false)]
public bool RepeatOnEveryPage { get; set; }
A boolean value. If true, the row will be repeated on each page where the table is rendered; otherwise, it will appear only on the first page.
Methods
Copies the properties from another document element to the current instance.
protected override void CopyPropertiesFromOverride(DocumentElement fromElement)
The DocumentElement to copy the properties from.
Overrides:
Creates a layout box for the specified collection of document structure elements.
public override LayoutBox CreateLayoutBox(DocumentStructureCollection documentCollection)
The collection of document structure elements used to create the layout box.
Returns:A layout box representing the created structure for rendering purposes.
Overrides:
Creates a new instance of this element.
protected override DocumentElement CreateNewElementInstance()
The new instance.
Overrides:
Called when the parent of the element has been changed.
protected override void OnParentChanged()
Overrides:
Called when the parent of the element is changing.
protected override void OnParentChanging()
Overrides: