IXlsColorScaleSubCondition
COM interface ( getting help with interfaces )

 

interface IXlsColorScaleSubCondition : IDispatch
{
  [id(1),propput] HRESULT ImplicitValue([in]BOOL implicit);
  [id(2),propput] HRESULT ExplicitValueAsFormula([in]BSTR formula);
  [id(3),propput] HRESULT ExplicitPercentAsFormula([in]BSTR formula);
  [id(4),propput] HRESULT ExplicitFormulaAsFormula([in]BSTR formula);
  [id(5),propput] HRESULT ExplicitPercentileAsFormula([in]BSTR formula);
  [id(6),propget] HRESULT Color([out, retval] int* nRGB);
  [id(6),propput] HRESULT Color([in]int nRGB);
}

 

HRESULT ImplicitValue([in]BOOL implicit);
sets whether color scales are defined by their implicit min/max values. Default value is YES.

HRESULT ExplicitValueAsFormula([in]BSTR formula);
sets whether color scales are defined by an explicit value, expressed as a formula. Example : =10.

HRESULT ExplicitPercentAsFormula([in]BSTR formula);
sets whether color scales are defined by an explicit percent value, expressed as a formula.

HRESULT ExplicitFormulaAsFormula([in]BSTR formula);
sets whether color scales are defined by an explicit formula.

HRESULT ExplicitPercentileAsFormula([in]BSTR formula);
sets whether color scales are defined by an explicit percentile value, expressed as a formula.

HRESULT Color([out, retval] int* nRGB);
retrieves the primary color.

HRESULT Color([in]int nRGB);
sets the primary color. Uses a 24-bit color number or an enumerated type. Default is : black.