Skip to main content
A newer version of this page is available. .

DXRichEditDataFormatOptions.HtmlImageSourceType Property

Specifies how images are included in the HTML content of the Clipboard.

Namespace: DevExpress.Xpf.RichEdit

Assembly: DevExpress.Xpf.RichEdit.v18.2.dll

Declaration

public HtmlImageSourceType HtmlImageSourceType { get; set; }

Property Value

Type Description
HtmlImageSourceType

A HtmlImageSourceType enumeration member that determines whether images are linked or embedded in HTML content.

The default is HtmlImageSourceType.Linked.

Available values:

Name Description
Linked

A linked image.

Embedded

An embedded image.

Property Paths

You can access this nested property as listed below:

Object Type Path to HtmlImageSourceType
RichEditControl
.ClipboardFormatOptions.HtmlImageSourceType

Remarks

The HtmlImageSourceType is in effect when the DXRichEditDataFormatOptions.AllowHtml option is true.

If the HtmlImageSourceType is set to HtmlImageSourceType.Linked, the path for storing linked images is determined by the DXRichEditDataFormatOptions.HtmlImagePath property.

See Also