 |
| IXlsChartAreaStyle |
 |
COM interface ( getting help with interfaces )
interface IXlsChartAreaStyle : IDispatch
{
[id(1),propget] HRESULT Type([out, retval]enumChartArea* type);
[id(1),propput] HRESULT Type([in]enumChartArea type);
[id(2),propget] HRESULT InverseIfNegative([out, retval]BOOL* inverse);
[id(2),propput] HRESULT InverseIfNegative([in]BOOL inverse);
[id(3),propget] HRESULT Pattern([out, retval]IXlsChartAreaStylePattern** pattern);
[id(4),propget] HRESULT Gradient([out, retval]IXlsChartAreaStyleGradient** gradient);
[id(5),propget] HRESULT PredefinedTexture([out, retval]IXlsChartAreaStyleTexture** texture);
[id(6),propget] HRESULT Image([out, retval]IXlsChartAreaStyleImage** image);
[id(7),propget] HRESULT Bubble3DEffect([out, retval]BOOL* bubble3D);
[id(7),propput] HRESULT Bubble3DEffect([in]BOOL bubble3D);
}
HRESULT Type([out, retval]enumChartArea* type);
returns the area style type.
HRESULT Type([in]enumChartArea type);
sets the area style type.
HRESULT InverseIfNegative([out, retval]BOOL* inverse);
returns whether the colors should be inversed if the values are negative. Default value is FALSE.
HRESULT InverseIfNegative([in]BOOL inverse);
sets whether the colors should be inversed if the values are negative. Default value is FALSE.
HRESULT Pattern([out, retval]IXlsChartAreaStylePattern** pattern);
returns the pattern object.
HRESULT Gradient([out, retval]IXlsChartAreaStyleGradient** gradient);
returns the gradient object.
HRESULT PredefinedTexture([out, retval]IXlsChartAreaStyleTexture** texture);
returns the texture object.
HRESULT Image([out, retval]IXlsChartAreaStyleImage** image);
returns the image object.
HRESULT Bubble3DEffect([out, retval]BOOL* bubble3D);
returns whether the bubbles are rendered with a 3D effect. Default value is : FALSE. Only applies to bubble charts.
HRESULT Bubble3DEffect([in]BOOL bubble3D);
sets whether the bubbles are rendered with a 3D effect. Default value is : FALSE. Only applies to bubble charts.