IXlsChartErrorBar
COM interface ( getting help with interfaces )

 

interface IXlsChartErrorBar : IDispatch
{
  [id(1),propget] HRESULT Show([out, retval]enumChartErrorBar* show);
  [id(1),propput] HRESULT Show([in]enumChartErrorBar show);
  [id(2),propget] HRESULT Options([out, retval]IXlsChartBorderStyle** options);
  [id(3),propget] HRESULT ThresholdType([out, retval]enumChartErrorBarThreshold* threshold);
  [id(3),propput] HRESULT ThresholdType([in]enumChartErrorBarThreshold threshold);
  [id(4),propget] HRESULT ThresholdValue([out, retval]double* value);
  [id(4),propput] HRESULT ThresholdValue([in]double value);
  [id(5),propget] HRESULT TeeMarkerSymbol([out, retval]BOOL* teemarker);
  [id(5),propput] HRESULT TeeMarkerSymbol([in]BOOL teemarker);
  [id(6),propget] HRESULT CustomPlusValue([out, retval]IXlsChartErrorBarCustom** custom);
  [id(7),propget] HRESULT CustomMinusValue([out, retval]IXlsChartErrorBarCustom** custom);
}

 

HRESULT Show([out, retval]enumChartErrorBar* show);
returns how the error bar is displayed. Default is : not displayed.

HRESULT Show([in]enumChartErrorBar show);
sets how the error bar is displayed. Default is : not displayed.

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

HRESULT ThresholdType([out, retval]enumChartErrorBarThreshold* threshold);
returns how the threshold is configured.

HRESULT ThresholdType([in]enumChartErrorBarThreshold threshold);
sets how the threshold is configured.

HRESULT ThresholdValue([out, retval]double* value);
returns the value associated to the threshold. Default value is : 0.

HRESULT ThresholdValue([in]double value);
sets the value associated to the threshold. Default value is : 0.

HRESULT TeeMarkerSymbol([out, retval]BOOL* teemarker);
returns whether error bar uses a tee-shape marker symbol. Default value is : yes.

HRESULT TeeMarkerSymbol([in]BOOL teemarker);
sets whether error bar uses a tee-shape marker symbol. Default value is : yes.

HRESULT CustomPlusValue([out, retval]IXlsChartErrorBarCustom** custom);
returns the custom value object for error bar values on the plus side.

HRESULT CustomMinusValue([out, retval]IXlsChartErrorBarCustom** custom);
returns the custom value object for error bar values on the minus side.