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

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:

C#
public class InsertTableDialogContext

Inheritance: objectInsertTableDialogContext

Constructors

Initializes a new instance of the InsertTableDialogContext class.

C#
public InsertTableDialogContext(Action<int, int, bool> insertTableCallback, RadRichTextBox owner)
Parameters:insertTableCallbackAction<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.

ownerRadRichTextBox

The owner of the dialog.

Properties

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

C#
public Action<int, int, bool> InsertTableCallback { get; }

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

C#
public RadRichTextBox Owner { get; }
Property Value:

The owner object associated with the Insert Table Dialog.