New to Telerik Document ProcessingStart a free 30-day trial

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:

C#
public class TableBorders

Inheritance: objectTableBorders

Constructors

Initializes a new instance of the TableBorders class.

C#
public TableBorders()

Initializes a new instance of the TableBorders class with individual borders for each side.

C#
public TableBorders(Border left, Border top, Border right, Border bottom)
Parameters:leftBorder

The border configuration for the left side of the table.

topBorder

The border configuration for the top side of the table.

rightBorder

The border configuration for the right side of the table.

bottomBorder

The border configuration for the bottom side of the table.

Initializes a new instance of the TableBorders class with the specified border for all sides.

C#
public TableBorders(Border all)
Parameters:allBorder

The border configuration to apply to all four sides of the table.

Properties

Gets the border configuration for the bottom side of the table.

C#
public Border Bottom { get; }
Property Value:

The bottom border configuration, or null if no border is specified.

Gets the border configuration for the left side of the table.

C#
public Border Left { get; }
Property Value:

The left border configuration, or null if no border is specified.

Gets the border configuration for the right side of the table.

C#
public Border Right { get; }
Property Value:

The right border configuration, or null if no border is specified.

Gets the border configuration for the top side of the table.

C#
public Border Top { get; }
Property Value:

The top border configuration, or null if no border is specified.