Skip to main content

TileItemElement.ActualImage Property

Returns the actual image from the TileItemElement object

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[Browsable(false)]
[DXCategory("Options")]
[EditorBrowsable(EditorBrowsableState.Never)]
public Image ActualImage { get; }

Property Value

Type Description
Image

Actual image from the TileItemElement object.

Remarks

The code sample below illustrates how to get the actual image from the TileItemElement object.

Image image = tileItem1.Elements[0].ActualImage;
See Also