Provides additional data for the InlineUIContainerImported event.
Definition
Namespace:Telerik.WinForms.Documents.FormatProviders.Html
Assembly:Telerik.WinControls.RichTextEditor.dll
Syntax:
C#
public class InlineUIContainerImportedEventArgs : EventArgs
Inheritance: objectEventArgsInlineUIContainerImportedEventArgs
Inherited Members
Constructors
Initializes a new instance of the InlineUIContainerImportedEventArgs class.
C#
public InlineUIContainerImportedEventArgs(string commentContent, string htmlContent, InlineUIContainer inlineUIContainer)
Content of the comment.
htmlContentstringContent of the HTML.
inlineUIContainerInlineUIContainerThe inline UI container.
Properties
Gets the content of a comment that will be used along with the container's content.
C#
public string CommentContent { get; }
The content of the comment.
Gets the HTML representing the container.
C#
public string HtmlContent { get; }
The HTML.
Gets the InlineUIContainer instance that has been imported.
C#
public InlineUIContainer InlineUIContainer { get; }
The inline UI container.