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

Represents the parameters used for the Insert Table command in the RichTextBox.

Definition

Namespace:Telerik.Windows.Documents.RichTextBoxCommands

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

C#
public class InsertTableCommandParameter

Inheritance: objectInsertTableCommandParameter

Constructors

C#
public InsertTableCommandParameter()
C#
public InsertTableCommandParameter(int rowsCount, int columnsCount, bool insertParagraphBeforeTable)
Parameters:rowsCountintcolumnsCountintinsertParagraphBeforeTablebool
C#
public InsertTableCommandParameter(int rowsCount, int columnsCount)
Parameters:rowsCountintcolumnsCountint

Properties

Gets or sets the number of columns in the table to be inserted.

C#
public int CoumnsCount { get; set; }
Property Value:

The number of columns. This value determines how many columns the inserted table will have.

Inserts a new paragraph before the table in the document.

C#
public bool InsertParagraphBeforeTable { get; set; }

Gets or sets the number of rows in the table to be inserted.

C#
public int RowsCount { get; set; }
Property Value:

An integer representing the count of rows for the table.