IXlsDrawingReflection
COM interface ( getting help with interfaces )

 

interface IXlsDrawingReflection : IDispatch
{
  [id(1),propget] HRESULT PredefinedReflection([out, retval]enumPredefinedReflection* predeffect);
  [id(1),propput] HRESULT PredefinedReflection([in]enumPredefinedReflection predeffect);
  [id(2),propget] HRESULT Alpha([out, retval]int* percent);
  [id(2),propput] HRESULT Alpha([in]int percent);
  [id(3),propget] HRESULT Strength([out, retval]int* strength);
  [id(3),propput] HRESULT Strength([in]int strength);
  [id(4),propget] HRESULT ReflectionSize([out, retval]int* percent);
  [id(4),propput] HRESULT ReflectionSize([in]int percent);
  [id(5),propget] HRESULT Distance([out, retval]int* points);
  [id(5),propput] HRESULT Distance([in]int points);

}

 

HRESULT PredefinedReflection([out, retval]enumPredefinedReflection* predeffect);
retrieves the predefined reflection effect.

HRESULT PredefinedReflection([in]enumPredefinedReflection predeffect);
sets the predefined reflection effect.

HRESULT Alpha([out, retval]int* percent);
retrieves the alpha transparency of the reflection effect.

HRESULT Alpha([in]int percent);
sets the alpha transparency of the reflection effect.

HRESULT Strength([out, retval]int* strength);
retrieves the strength of the reflection effect.

HRESULT Strength([in]int strength);
sets the strength of the reflection effect.

HRESULT ReflectionSize([out, retval]int* percent);
retrieves the relative reflection size of the custom reflection effect.

HRESULT ReflectionSize([in]int percent);
sets the relative reflection size of the custom reflection effect.

HRESULT Distance([out, retval]int* points);
retrieves the distance of the custom reflection effect. In points.

HRESULT Distance([in]int points);
sets the distance of the custom reflection effect. In points.