Syncfusion AI Assistant

How can I help you?

ExcelHeaderQueryCellInfoEventArgs

16 Mar 20261 minute to read

Extends the Excel header cell query event args to allow attaching an image to a header cell
during Excel export. Handlers for the header cell query event can set the image property
to a Image to embed an image inside the header cell.
Example:
pivotObj.excelHeaderQueryCellInfo = (args) => {
args.image = { base64: ‘…’, width: 80, height: 30, firstRowOffset: 0, firstColumnOffset: 0 };
};

Properties

cell Object

Defines the cell that contains colspan.

gridCell Cell|ExcelCell

Defines the Grid cell instance

Defines the hyperlink

image Image

Optional image metadata describing the image to render inside the header cell
when exporting to Excel.

style ExcelStyle

Defines the style of the current cell.