IXlsChartTitle
COM interface ( getting help with interfaces )

 

interface IXlsChartTitle : IDispatch
{
  [id(1),propput] HRESULT Label([in]BSTR label);
  [id(1),propget] HRESULT Label([out, retval]BSTR* label);
  [id(2),propput] HRESULT RichLabel([in]IXlsRichLabel* rl);
  [id(3),propget] HRESULT Options([out, retval]IXlsChartOptions** options);
}

 

HRESULT Label([in]BSTR label);
sets the chart title. Pass an empty string to hide it.

HRESULT Label([out, retval]BSTR* label);
returns the chart title.

HRESULT RichLabel([in]IXlsRichLabel* rl);
sets the chart title using richly formatting labels.

HRESULT Options([out, retval]IXlsChartOptions** options);
returns the chart title options object.