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);
  [id(4),propput] HRESULT Formula([in]BSTR formula);
  [id(4),propget] HRESULT Formula([out, retval]BSTR* formula);

}

 

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.

HRESULT Formula([in]BSTR formula);
sets the formula for the chart title.

HRESULT Formula([out, retval]BSTR* formula);
returns the formula for the chart title.