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

Provides additional data for the InlineUIContainerImporting event.

Definition

Namespace:Telerik.WinForms.Documents.FormatProviders.Html

Assembly:Telerik.WinControls.RichTextEditor.dll

Syntax:

C#
public class InlineUIContainerImportingEventArgs : EventArgs

Inheritance: objectEventArgsInlineUIContainerImportingEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the InlineUIContainerImportingEventArgs class.

C#
public InlineUIContainerImportingEventArgs(string commentContent, string htmlContent, Paragraph targetParagraph)
Parameters:commentContentstring

Content of the comment.

htmlContentstring

The HTML.

targetParagraphParagraph

The Paragraph the container will be inserted into.

Properties

Gets the content of a comment that will be used along with the container's content.

C#
public string CommentContent { get; }
Property Value:

The content of the comment.

Gets a value indicating whether this InlineUIContainerImportingEventArgs is handled.

C#
public bool Handled { get; }
Property Value:

true if handled; otherwise, false.

Gets the HTML representing the container.

C#
public string HtmlContent { get; }
Property Value:

The HTML.

Gets the Paragraph the container will be inserted into.

C#
public Paragraph TargetParagraph { get; }
Property Value:

The target paragraph.