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

Defines values for the different modes that can be used when exporting images to HTML.

Definition

Namespace:Telerik.WinForms.Documents.FormatProviders.Html

Assembly:Telerik.WinControls.RichTextEditor.dll

Syntax:

C#
public enum ImageExportMode

Fields

The best mode to export the image is chosen automatically.

C#
AutomaticInline = 1

Images are inline Base64 encoded.

C#
Base64Encoded = 3

Images are inline Base64 encoded and split into parts laid out in a table.

C#
Base64EncodedSplit = 2

Event is raised on exporting.

C#
ImageExportingEvent = 4

Image are not exported.

C#
None = 0

The UriSource property is set as 'src' attribute of the 'img' tag.

C#
UriSource = 5