New to Telerik UI for WinFormsStart a free 30-day trial

Provides additional data the InlineUIContainerExporting event.

Definition

Namespace:Telerik.WinForms.Documents.FormatProviders.Html

Assembly:Telerik.WinControls.RichTextEditor.dll

Syntax:

C#
public class InlineUIContainerExportingEventArgs : EventArgs

Inheritance: objectEventArgsInlineUIContainerExportingEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the InlineUIContainerExportingEventArgs class.

C#
public InlineUIContainerExportingEventArgs(InlineUIContainer inlineUIContainer, string commentContent, string htmlContent)
Parameters:inlineUIContainerInlineUIContainer

The inline UI container.

commentContentstring

Content of the comment.

htmlContentstring

Content of the HTML.

Properties

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

C#
public string CommentContent { get; set; }
Property Value:

The content of the comment.

Gets or sets the HTML representing the container.

C#
public string HtmlContent { get; set; }
Property Value:

The HTML.

Gets the InlineUIContainer instance which is being exported.

C#
public InlineUIContainer InlineUIContainer { get; }
Property Value:

The inline UI container.

Gets or sets a value indicating whether the container should be skipped while exporting.

C#
public bool SkipFromExport { get; set; }
Property Value:

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