Class InsertTableCommandParameter
Represents the parameters used for the Insert Table command in the RichTextBox.
Inheritance
Namespace: Telerik.Windows.Documents.RichTextBoxCommands
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class InsertTableCommandParameter : Object
Constructors
InsertTableCommandParameter()
Declaration
public InsertTableCommandParameter()
InsertTableCommandParameter(Int32, Int32)
Declaration
public InsertTableCommandParameter(int rowsCount, int columnsCount)
Parameters
System.Int32
rowsCount
|
System.Int32
columnsCount
|
InsertTableCommandParameter(Int32, Int32, Boolean)
Declaration
public InsertTableCommandParameter(int rowsCount, int columnsCount, bool insertParagraphBeforeTable)
Parameters
System.Int32
rowsCount
|
System.Int32
columnsCount
|
System.Boolean
insertParagraphBeforeTable
|
Properties
CoumnsCount
Gets or sets the number of columns in the table to be inserted.
Declaration
public int CoumnsCount { get; set; }
Property Value
System.Int32
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
public bool InsertParagraphBeforeTable { get; set; }
Property Value
System.Boolean
|
RowsCount
Gets or sets the number of rows in the table to be inserted.
Declaration
public int RowsCount { get; set; }
Property Value
System.Int32
An integer representing the count of rows for the table. |