Class FloatingUIContainerExportingEventArgs
Provides additional data the FloatingUIContainerExporting event.
Inheritance
Namespace: Telerik.Windows.Documents.FormatProviders.Html
Assembly: Telerik.Windows.Documents.dll
Syntax
public class FloatingUIContainerExportingEventArgs : EventArgs
Constructors
FloatingUIContainerExportingEventArgs(FloatingUIContainer, String, String)
Initializes a new instance of the FloatingUIContainerExportingEventArgs class.
Declaration
public FloatingUIContainerExportingEventArgs(FloatingUIContainer floatingUIContainer, string commentContent, string htmlContent)
Parameters
FloatingUIContainer
floatingUIContainer
The floating 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. |
FloatingUIContainer
Gets the floating UI container.
Declaration
public FloatingUIContainer FloatingUIContainer { get; }
Property Value
FloatingUIContainer
The floating UI container. |
HtmlContent
Gets or sets the HTML representing the container.
Declaration
public string HtmlContent { get; set; }
Property Value
System.String
The HTML. |
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
|