Extends image vertically to simulate a reflection (like reflection of "cover flow" presentations).

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void Reflection(
	int minAlpha,
	int maxAlpha,
	int percentage
)
Public Sub Reflection ( _
	minAlpha As Integer, _
	maxAlpha As Integer, _
	percentage As Integer _
)
public:
void Reflection(
	int minAlpha, 
	int maxAlpha, 
	int percentage
)

Parameters

minAlpha
Int32
Minimum alpha value (0=fully transparent, 255=fully opaque).
maxAlpha
Int32
Maximum alpha value (0=fully transparent, 255=fully opaque).
percentage
Int32
Effect percentage (0=no effect, 100=maximum effect).

Examples

CopyC#
ieViewer1.Image.Reflection(0, 200, 50);

See Also