IXlsChartErrorBarCustom
COM interface ( getting help with interfaces )

 

interface IXlsChartErrorBarCustom : IDispatch
{
  [id(1),propget] HRESULT Float([out, retval]double* value);
  [id(1),propput] HRESULT Float([in]double value);
  [id(2),propget] HRESULT Range([out, retval]BSTR* cellrange);
  [id(2),propput] HRESULT Range([in]BSTR cellrange);
}

 

HRESULT Float([out, retval]double* value);
returns the value as a float primitive type.

HRESULT Float([in]double value);
sets the value as a float primitive type.

HRESULT Range([out, retval]BSTR* cellrange);
returns the value as a range type. Example : A1B4.

HRESULT Range([in]BSTR cellrange);
sets the value as a range type. Example : A1B4.