IXlsChartAreaStyleGradientSingleColor
COM interface ( getting help with interfaces )

 

interface IXlsChartAreaStyleGradientSingleColor : IDispatch
{
  [id(1),propget] HRESULT Color([out, retval]int* nRGB);
  [id(1),propput] HRESULT Color([in]int nRGB);
  [id(2),propget] HRESULT LightThreshold([out, retval]int* threshold);
  [id(2),propput] HRESULT LightThreshold([in]int threshold);
  [id(3),propget] HRESULT GradientStyle([out, retval]enumChartGradientStyle* gradientstyle);
  [id(3),propput] HRESULT GradientStyle([in]enumChartGradientStyle gradientstyle);
}

 

HRESULT Color([out, retval]int* nRGB);
returns the dominant gradient color.

HRESULT Color([in]int nRGB);
sets the dominant gradient color. Color is expressed using a typical RGB value.

HRESULT LightThreshold([out, retval]int* threshold);
returns the light threshold. A valid threshold is any number in the [0..100] range where low values mean darker and greater values mean brighter.

HRESULT LightThreshold([in]int threshold);
sets the light threshold. A valid threshold is any number in the [0..100] range where low values mean darker and greater values mean brighter.

HRESULT GradientStyle([out, retval]enumChartGradientStyle* gradientstyle);
returns the gradient fill style.

HRESULT GradientStyle([in]enumChartGradientStyle gradientstyle);
sets the gradient fill style.