 |
| IXlsChartAreaStylePattern |
 |
COM interface ( getting help with interfaces )
interface IXlsChartAreaStylePattern : IDispatch
{
[id(1),propget] HRESULT PatternStyle([out, retval]enumChartAreaPattern* pattern);
[id(1),propput] HRESULT PatternStyle([in]enumChartAreaPattern pattern);
[id(2),propget] HRESULT ForegroundColor([out, retval]int* nRGB);
[id(2),propput] HRESULT ForegroundColor([in]int nRGB);
[id(3),propget] HRESULT BackgroundColor([out, retval]int* nRGB);
[id(3),propput] HRESULT BackgroundColor([in]int nRGB);
}
HRESULT PatternStyle([out, retval]enumChartAreaPattern* pattern);
returns the area pattern fill style.
HRESULT PatternStyle([in]enumChartAreaPattern pattern);
sets the area pattern fill style.
HRESULT ForegroundColor([out, retval]int* nRGB);
returns the foreground area color.
HRESULT ForegroundColor([in]int nRGB);
sets the foreground area color. Color is expressed using a typical RGB value.
HRESULT BackgroundColor([out, retval]int* nRGB);
returns the background area color.
HRESULT BackgroundColor([in]int nRGB);
sets the background area color. Color is expressed using a typical RGB value.