Skip to main content
All docs
V25.1
  • PictureFormat.PictureUri Property

    Gets or sets the picture’s URI.

    Namespace: DevExpress.XtraRichEdit.API.Native

    Assembly: DevExpress.RichEdit.v25.1.Core.dll

    NuGet Package: DevExpress.RichEdit.Core

    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