 |
| IXlsDrawingBlur |
 |
COM interface ( getting help with interfaces )
interface IXlsDrawingBlur : IDispatch
{
[id(1),propget] HRESULT InsideOnly([out, retval]BOOL* bInsideOnly);
[id(1),propput] HRESULT InsideOnly([in]BOOL bInsideOnly);
[id(2),propget] HRESULT Strength([out, retval]int* strength);
[id(2),propput] HRESULT Strength([in]int strength);
}
HRESULT InsideOnly([out, retval]BOOL* bInsideOnly);
retrieves whether or not the blur effect should apply inside only. Default is : false.
HRESULT InsideOnly([in]BOOL bInsideOnly);
sets whether or not the blur effect should apply inside only. Default is : false.
HRESULT Strength([out, retval]int* strength);
retrieves the strength of the blur effect.
HRESULT Strength([in]int strength);
sets the strength of the blur effect.