WebAnimator.XSkewSupported

From Xojo Documentation

Read-Only Property (As Boolean )
BooleanValue = aWebAnimator.XSkewSupported

New in 2010r4

Supported for all project types and targets.

Return True if X-axis skewing animation is supported by the browser. If False, then the SkewX method does nothing.

Sample Code

Call SkewX if supported by the browser:

If Animator1.XSkewSupported Then
Animator1.SkewX(ImageView1, 20, 0.5)
Animator1.Play
End If