Class InlineUIContainerExportingEventArgs
Provides additional data the InlineUIContainerExporting event.
Inheritance
Namespace: Telerik.Windows.Documents.FormatProviders.Html
Assembly: Telerik.Windows.Documents.dll
Syntax
public class InlineUIContainerExportingEventArgs : EventArgs
Constructors
InlineUIContainerExportingEventArgs(InlineUIContainer, String, String)
Initializes a new instance of the InlineUIContainerExportingEventArgs class.
Declaration
public InlineUIContainerExportingEventArgs(InlineUIContainer inlineUIContainer, string commentContent, string htmlContent)
Parameters
InlineUIContainer
inlineUIContainer
The inline UI container. |
System.String
commentContent
Content of the comment. |
System.String
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
System.String
The content of the comment. |
HtmlContent
Gets or sets the HTML representing the container.
Declaration
public string HtmlContent { get; set; }
Property Value
System.String
The HTML. |
InlineUIContainer
Gets the InlineUIContainer instance which is being exported.
Declaration
public InlineUIContainer InlineUIContainer { get; }
Property Value
InlineUIContainer
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
System.Boolean
|