Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PictureFormat.SetPicture(DocumentImageSource) Method

Allows you to replace the current picture.

Namespace: DevExpress.XtraRichEdit.API.Native

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

NuGet Package: DevExpress.RichEdit.Core

#Declaration

void SetPicture(
    DocumentImageSource imageSource
)

#Parameters

Name Type Description
imageSource DocumentImageSource

An object that specifies the image source.

#Remarks

The SetPicture method allows you to replace an existing picture with another picture and maintain the original picture’s format, size, and position.

Rich_PictureFormat_SetPicture

Document document = wordProcessor.Document;
// Set the measurement unit to inches.
document.Unit = DevExpress.Office.DocumentUnit.Inch;
// Insert a picture.
Shape picture = document.Shapes.InsertPicture(document.Range.Start, DocumentImageSource.FromFile("Picture_Dog.png"));
// Set the picture size.
picture.Size = new SizeF(3f, 2.5f);
// Align the picture.
picture.HorizontalAlignment = ShapeHorizontalAlignment.Center;
picture.VerticalAlignment = ShapeVerticalAlignment.Top;
// Change the picture's form.
picture.PictureFormat.Preset = ShapeGeometryPreset.RoundedRectangle;
// Display a border around the picture.
picture.Line.Color = Color.Black;
// Replace the picture.
picture.PictureFormat.SetPicture(DocumentImageSource.FromFile("Picture_Cat.png"));
See Also