New to Telerik UI for WPFStart a free 30-day trial

Represents the visual style and appearance settings for a table in the document model.

Definition

Namespace:Telerik.Windows.Documents.Model

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public class TableLook

Inheritance: objectTableLook

Constructors

C#
public TableLook()
C#
public TableLook(TableLook originalTableLook)
Parameters:originalTableLookTableLook

Properties

Applies column banding to the specified table look, enhancing its visual appearance by alternating the background colors of adjacent columns.

C#
[XamlSerializable(false)]
public bool ApplyColumnBanding { get; set; }

Applies the first column style to the table.

C#
[XamlSerializable(true)]
public bool ApplyFirstColumn { get; set; }

Applies the first row formatting to the table, enhancing its visual structure.

C#
[XamlSerializable(true)]
public bool ApplyFirstRow { get; set; }

Applies the last column look to the table in the document model.

C#
[XamlSerializable(false)]
public bool ApplyLastColumn { get; set; }

Applies the last row formatting to the table.

C#
[XamlSerializable(false)]
public bool ApplyLastRow { get; set; }

Applies row banding to the table, enhancing its visual presentation by alternating row colors.

C#
[XamlSerializable(true)]
public bool ApplyRowBanding { get; set; }

Methods

Determines whether the specified object is equal to the current TableLook instance.

C#
public override bool Equals(object obj)
Parameters:objobject

The object to compare with the current TableLook instance.

Returns:

bool

True if the specified object is equal to the current TableLook instance; otherwise, false.

Overrides: object.Equals(object)

Gets a hash code for the current instance of the TableLook class.

C#
public override int GetHashCode()
Returns:

int

A 32-bit signed integer that is the hash code for the current TableLook instance.

Overrides: object.GetHashCode()

Events

C#
public event EventHandler TableLookChanged