Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

PictureFormat.Preset Property

Gets or sets the picture’s geometry type.

Namespace: DevExpress.XtraRichEdit.API.Native

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

NuGet Package: DevExpress.RichEdit.Core

Declaration

ShapeGeometryPreset Preset { get; set; }

Property Value

Type Description
ShapeGeometryPreset

An enumeration member that specifies the picture’s geometry.

Remarks

Use the Preset property to change an existing picture’s geometry. The example below shows how to insert a picture with rounded corners.

Rich_PictureFormat_Preset

// Insert a picture.
Shape picture = document.Shapes.InsertPicture(document.Range.Start, DocumentImageSource.FromFile("Dog.png"));
// Change the picture's form.
picture.PictureFormat.Preset = ShapeGeometryPreset.RoundedRectangle;
// Display a border around the picture.
picture.Line.Color = Color.Black;
picture.Line.Thickness = 3;
// Align the picture.
picture.VerticalAlignment = ShapeVerticalAlignment.Top;
picture.HorizontalAlignment = ShapeHorizontalAlignment.Center;
See Also