officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-layout-dot-layoutfloatingpicture.md
Returns an image contained in the floating picture object.
Namespace : DevExpress.XtraRichEdit.API.Layout
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
public OfficeImage Image { get; }
Public ReadOnly Property Image As OfficeImage
| Type | Description |
|---|---|
| OfficeImage |
An OfficeImage object that is the image contained in the floating picture.
|
The Image property is similar to the PictureFormat.Picture property.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Image property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
returnedInformation += String.Format("\r\n!!Image properties:\r\n");
returnedInformation += GetInformationAboutOfficeImage(currentFloatingPicture.Image);
}
returnedInformation &= String.Format(Constants.vbCrLf & "!!Image properties:" & Constants.vbCrLf)
returnedInformation &= GetInformationAboutOfficeImage(currentFloatingPicture.Image)
End If
See Also
Shapes, Pictures, and Other Graphic Objects in Rich Text Documents