Skip to main content

ImageSource.Image Property

Returns an image.

Namespace: DevExpress.XtraPrinting.Drawing

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

[Browsable(false)]
public DXImage Image { get; }

Property Value

Type Description
DXImage

The image the ImageSource object stores.

Remarks

The ImageSource object stores either a DevExpress.Drawing.DXImage object or an SVG image. When the Image property returns an image, the ImageSource.SvgImage property returns null.

Tip

Call the DXImageExtensions.ConvertToGdiPlusImage(DXImage) method to obtain the System.Drawing.Image instance from the DXImage object.

See Also