ClassInlineUIContainerImportingEventArgs
Provides additional data for the InlineUIContainerImporting event.
Definition
Namespace:Telerik.Windows.Documents.FormatProviders.Html
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public class InlineUIContainerImportingEventArgs : EventArgs
Inheritance: objectEventArgsInlineUIContainerImportingEventArgs
Inherited Members
Constructors
InlineUIContainerImportingEventArgs(string, string, Paragraph)
Initializes a new instance of the InlineUIContainerImportingEventArgs class.
Declaration
public InlineUIContainerImportingEventArgs(string commentContent, string htmlContent, Paragraph targetParagraph)
Parameters
commentContent
Content of the comment.
htmlContent
The HTML.
targetParagraph
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
public string CommentContent { get; }
Property Value
The content of the comment.
Handled
Gets a value indicating whether this InlineUIContainerImportingEventArgs is handled.
Declaration
public bool Handled { get; }
Property Value
true if handled; otherwise, false.
HtmlContent
Gets the HTML representing the container.
TargetParagraph
Gets the Paragraph the container will be inserted into.
Declaration
public Paragraph TargetParagraph { get; }
Property Value
The target paragraph.