IXlsChartAreaStyleImage
COM interface ( getting help with interfaces )

 

interface IXlsChartAreaStyleImage : IDispatch
{
  [id(1),propget] HRESULT ImageFilename([out, retval]BSTR* filename);
  [id(1),propput] HRESULT ImageFilename([in]BSTR filename);
  [id(2),propget] HRESULT ImageStyle([out, retval]enumChartImageStyle* style);
  [id(2),propput] HRESULT ImageStyle([in]enumChartImageStyle style);
  [id(3),propget] HRESULT ImageStretchUnits([out, retval]double* units);
  [id(3),propput] HRESULT ImageStretchUnits([in]double units);
}

 

HRESULT ImageFilename([out, retval]BSTR* filename);
returns the image filename.

HRESULT ImageFilename([in]BSTR filename);
sets the image filename. Must exist and be fully qualified. Supported file formats are BMP/GIF/JPG/JPEG/PNG/WMF/EMF/WEBP.

HRESULT ImageStyle([out, retval]enumChartImageStyle* style);
returns the image style.

HRESULT ImageStyle([in]enumChartImageStyle style);
sets the image style.

HRESULT ImageStretchUnits([out, retval]double* units);
returns the image stacked and stretch units. Default value is 1.0.

HRESULT ImageStretchUnits([in]double units);
sets the image stacked and stretch units. Default value is 1.0.