Class
InsertTableCommandParameter

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:

cs-api-definition
public class InsertTableCommandParameter

Inheritance: objectInsertTableCommandParameter

Constructors

InsertTableCommandParameter()

Declaration

cs-api-definition
public InsertTableCommandParameter()

InsertTableCommandParameter(int, int)

Declaration

cs-api-definition
public InsertTableCommandParameter(int rowsCount, int columnsCount)

Parameters

rowsCount

int

columnsCount

int

InsertTableCommandParameter(int, int, bool)

Declaration

cs-api-definition
public InsertTableCommandParameter(int rowsCount, int columnsCount, bool insertParagraphBeforeTable)

Parameters

rowsCount

int

columnsCount

int

insertParagraphBeforeTable

bool

Properties

CoumnsCount

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

Declaration

cs-api-definition
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Coumns")]
public int CoumnsCount { get; set; }

Property Value

int

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

InsertParagraphBeforeTable

Inserts a new paragraph before the table in the document.

Declaration

cs-api-definition
public bool InsertParagraphBeforeTable { get; set; }

Property Value

bool

RowsCount

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

Declaration

cs-api-definition
public int RowsCount { get; set; }

Property Value

int

An integer representing the count of rows for the table.