Class
InlineUIContainerImportingEventArgs

Provides additional data for the InlineUIContainerImporting event.

Definition

Namespace:Telerik.Windows.Documents.FormatProviders.Html

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

cs-api-definition
public class InlineUIContainerImportingEventArgs : EventArgs

Inheritance: objectEventArgsInlineUIContainerImportingEventArgs

Inherited Members EventArgs.Empty

Constructors

InlineUIContainerImportingEventArgs(string, string, Paragraph)

Initializes a new instance of the InlineUIContainerImportingEventArgs class.

Declaration

cs-api-definition
public InlineUIContainerImportingEventArgs(string commentContent, string htmlContent, Paragraph targetParagraph)

Parameters

commentContent

string

Content of the comment.

htmlContent

string

The HTML.

targetParagraph

Paragraph

The Paragraph the container will be inserted into.

Properties

CommentContent

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

Declaration

cs-api-definition
public string CommentContent { get; }

Property Value

string

The content of the comment.

Handled

Gets a value indicating whether this InlineUIContainerImportingEventArgs is handled.

Declaration

cs-api-definition
public bool Handled { get; }

Property Value

bool

true if handled; otherwise, false.

HtmlContent

Gets the HTML representing the container.

Declaration

cs-api-definition
public string HtmlContent { get; }

Property Value

string

The HTML.

TargetParagraph

Gets the Paragraph the container will be inserted into.

Declaration

cs-api-definition
public Paragraph TargetParagraph { get; }

Property Value

Paragraph

The target paragraph.