Provides additional data the InlineUIContainerExporting event.
Definition
Namespace:Telerik.WinForms.Documents.FormatProviders.Html
Assembly:Telerik.WinControls.RichTextEditor.dll
Syntax:
public class InlineUIContainerExportingEventArgs : EventArgs
Inheritance: objectEventArgsInlineUIContainerExportingEventArgs
Inherited Members
Constructors
Initializes a new instance of the InlineUIContainerExportingEventArgs class.
public InlineUIContainerExportingEventArgs(InlineUIContainer inlineUIContainer, string commentContent, string htmlContent)
The inline UI container.
commentContentstringContent of the comment.
htmlContentstringContent of the HTML.
Properties
Gets or sets content of a comment to be used along with the container's content.
public string CommentContent { get; set; }
The content of the comment.
Gets or sets the HTML representing the container.
public string HtmlContent { get; set; }
The HTML.
Gets the InlineUIContainer instance which is being exported.
public InlineUIContainer InlineUIContainer { get; }
The inline UI container.
Gets or sets a value indicating whether the container should be skipped while exporting.
public bool SkipFromExport { get; set; }
true if the container should be skipped while exporting; otherwise, false.