ImageEn, unit iexTransitions

TIETransitionParams.WipeLineWidth

TIETransitionParams.WipeLineWidth


Declaration

property WipeLineWidth: Integer;


Description

WipeLineWidth and WipeLineColor specify the style of the line that is used as the border between the old image and new image during a transition.

It is used only when AlternativeStyle is enabled, and applies to the following transition effects:

iettLeftRight, iettRightLeft, iettUpDown, iettDownUp,
iettMoveLeftRight1, iettMoveRightLeft1, iettMoveUpDown1, iettMoveDownUp1,
iettMoveLeftRight2, iettMoveRightLeft2, iettMoveUpDown2, iettMoveDownUp2,
iettExpandInFromSides, iettExpandInFromTopAndBottom, iettExpandOutFromHorizon, iettExpandOutFromVerticalCenter,
iettWipeFromTopLeft, iettWipeFromTopRight, iettWipeFromBottomLeft, iettWipeFromBottomRight, iettWipeInFromTopAndBottom,
iettWipeFromHorizon, iettWipeInFromSides, iettWipeOutFromVerticalCenter,
iettSlideInFromLeft, iettSlideInFromRight, iettSlideInFromTop, iettSlideInFromBottom,
iettWipeDiagonalFromTopLeft, iettWipeDiagonalFromTopRight, iettWipeDiagonalFromBottomLeft, iettWipeDiagonalFromBottomRight,
iettDiagonalSweepClockwise, iettDiagonalSweepCounterClockwise,
iettPushLeftAndSlideOut, iettPushRightAndSlideOut, iettPushUpAndSlideOut, iettPushDownAndSlideOut,
iettPushAndSqueezeLeft, iettPushAndSqueezeRight, iettPushAndSqueezeUp, iettPushAndSqueezeDown

Default: 2


Example

// Display a thin red gray for a wipe transition
ImageEnView1.TransitionParams.WipeLineColor    := clGray;
ImageEnView1.TransitionParams.WipeLineWidth    := 1;
ImageEnView1.TransitionParams.AlternativeStyle := True;
ImageEnView1.PrepareTransition();
ImageEnView1.IO.LoadFromFile( NextImage );
ImageEnView1.RunTransition( iettLeftRight , 2000 );