WebAnimator.Resize

From Xojo Documentation

Method

WebAnimator.Resize(Target As WebControl, Width As Integer, Height As Integer, Duration As Double)

New in 2010r4

Supported for all project types and targets.

Resizes the Target control to the Width and Height over the Duration specified.

Sample Code

Resize a button when it is clicked:

Animator1.Resize(Me, 500, 500, 2.0)
Animator1.Play