Skip to main content

PictureFormat.PictureUri Property

Gets or sets the picture’s URI.

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v23.2.Core.dll

NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation

Declaration

string PictureUri { get; set; }

Property Value

Type Description
String

A URI used to load the picture. An empty string, if the picture has no URI.

Remarks

To add a picture to the document, use the DocumentImageSource.FromUri method to load a picture from a URI and pass it to the ShapeCollection.InsertPicture method. The PictureUri property allows you to obtain or modify the picture URI.

Use a custom exporter to save the PictureUri property value to a file. Built-in exporters to common file formats discard this information when a document is saved.

See Also