TableBorders
Represents the border configuration for a table, defining the visual boundaries around the entire table.
Definition
Namespace:Telerik.Windows.Documents.Fixed.Model.Editing
Assembly:Telerik.Windows.Documents.Fixed.dll
Syntax:
public class TableBorders
Inheritance: objectTableBorders
Constructors
Initializes a new instance of the TableBorders class.
public TableBorders()
Initializes a new instance of the TableBorders class with individual borders for each side.
public TableBorders(Border left, Border top, Border right, Border bottom)
The border configuration for the left side of the table.
topBorderThe border configuration for the top side of the table.
rightBorderThe border configuration for the right side of the table.
bottomBorderThe border configuration for the bottom side of the table.
Initializes a new instance of the TableBorders class with the specified border for all sides.
public TableBorders(Border all)
The border configuration to apply to all four sides of the table.
Properties
Gets the border configuration for the bottom side of the table.
public Border Bottom { get; }
The bottom border configuration, or null if no border is specified.
Gets the border configuration for the left side of the table.
public Border Left { get; }
The left border configuration, or null if no border is specified.
Gets the border configuration for the right side of the table.
public Border Right { get; }
The right border configuration, or null if no border is specified.