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