Class
InsertTableDialogContext

Represents the context for the Insert Table dialog in the Telerik UI framework. This class provides properties and methods to manage the configuration and behavior of the dialog.

Definition

Namespace:Telerik.Windows.Documents.UI.Extensibility

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

cs-api-definition
public class InsertTableDialogContext

Inheritance: objectInsertTableDialogContext

Constructors

InsertTableDialogContext(Action<int, int, bool>, RadRichTextBox)

Initializes a new instance of the InsertTableDialogContext class.

Declaration

cs-api-definition
public InsertTableDialogContext(Action<int, int, bool> insertTableCallback, RadRichTextBox owner)

Parameters

insertTableCallback

Action<int, int, bool>

The insert table callback. First parameter specifies rows; second parameter specifies columns; the third parameter specifies if paragraphs should be inserted before table when it is in the start of block container.

owner

RadRichTextBox

The owner of the dialog.

Properties

InsertTableCallback

Represents a callback function for inserting a table in the Insert Table dialog context.

Declaration

cs-api-definition
public Action<int, int, bool> InsertTableCallback { get; }

Property Value

Action<int, int, bool>

Owner

Gets or sets the owner of the Insert Table Dialog Context.

Declaration

cs-api-definition
public RadRichTextBox Owner { get; }

Property Value

RadRichTextBox

The owner object associated with the Insert Table Dialog.