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