Class FloatingUIContainerImportingEventArgs
Provides additional data for the FloatingUIContainerImporting event.
Inheritance
Namespace: Telerik.Windows.Documents.FormatProviders.Html
Assembly: Telerik.Windows.Documents.dll
Syntax
public class FloatingUIContainerImportingEventArgs : EventArgs
Constructors
FloatingUIContainerImportingEventArgs(String, String, Paragraph)
Initializes a new instance of the FloatingUIContainerImportingEventArgs class.
Declaration
public FloatingUIContainerImportingEventArgs(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 FloatingUIContainerImportingEventArgs 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. |