Skip to main content

IXlPicture Interface

Represents a picture embedded in a worksheet.

Namespace: DevExpress.Export.Xl

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

NuGet Package: DevExpress.Printing.Core

Declaration

public interface IXlPicture :
    IDisposable

The following members return IXlPicture objects:

Remarks

To create an object that exposes the IXlPicture interface, use the IXlSheet.CreatePicture method.

For an example on how to create and add a picture to a worksheet, refer to the How to: Insert and Position a Picture in a Worksheet article.

Note

When you finish working with the IXlPicture object, call the Dispose method to release all the resources used by the object. Otherwise, generated content is not written to the output file. You can also modify the IXlPicture object within the using statement (Using block in Visual Basic).

See Also