Class
InlineUIContainerExportingEventArgs

Provides additional data the InlineUIContainerExporting event.

Definition

Namespace:Telerik.Windows.Documents.FormatProviders.Html

Assembly:Telerik.Windows.Controls.RichTextBox.dll

Syntax:

cs-api-definition
public class InlineUIContainerExportingEventArgs : EventArgs

Inheritance: objectEventArgsInlineUIContainerExportingEventArgs

Inherited Members EventArgs.Empty

Constructors

InlineUIContainerExportingEventArgs(InlineUIContainer, string, string)

Initializes a new instance of the InlineUIContainerExportingEventArgs class.

Declaration

cs-api-definition
public InlineUIContainerExportingEventArgs(InlineUIContainer inlineUIContainer, string commentContent, string htmlContent)

Parameters

inlineUIContainer

InlineUIContainer

The inline UI container.

commentContent

string

Content of the comment.

htmlContent

string

Content of the HTML.

Properties

CommentContent

Gets or sets content of a comment to be used along with the container's content.

Declaration

cs-api-definition
public string CommentContent { get; set; }

Property Value

string

The content of the comment.

HtmlContent

Gets or sets the HTML representing the container.

Declaration

cs-api-definition
public string HtmlContent { get; set; }

Property Value

string

The HTML.

InlineUIContainer

Gets the InlineUIContainer instance which is being exported.

Declaration

cs-api-definition
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

cs-api-definition
public bool SkipFromExport { get; set; }

Property Value

bool

true if the container should be skipped while exporting; otherwise, false.