docs

Home All functions Categories

vuAnimateOpenSlide(hWindow, dwTime, L2R, R2L, T2B, B2T)

vuAnimateOpenSlide(LONG,LONG,LONG,LONG,LONG,LONG), Signed

Description

Animates the opening of a window by sliding in the specified direction(s). The animation duration is defined by dwTime in milliseconds.

Parameters

Parameter Data Type Description
hWindow LONG Handle of the window to animate
dwTime LONG Duration of the animation in milliseconds
L2R LONG 1 = Open window left to right. Do not set both L2R and R2L. If both are set, defaults to L2R.
R2L LONG 1 = Open window right to left
T2B LONG 1 = Open window top to bottom. Do not set both T2B and B2T. If both are set, defaults to T2B.
B2T LONG 1 = Open window bottom to top

Returns

1 (True) on success, 0 (False) on failure.

Example

hWindow = Window{PROP:Handle}
dwTime  = 200  ! default

vuAnimateOpenSlide(hWindow, dwTime, 1, 0, 1, 0)

Notes

Home All functions Categories