Object Model Reference : Classes : S : Shape : Properties : Shape.AbsoluteSkew |
Property AbsoluteSkew As Double
Member of Shape
The AbsoluteSkew property returns the absolute skew angle applied to a shape since its creation.
The AbsoluteSkew property returns a read-only value.
The following VBA example displays the absolute skew angle of the selected shape.
Sub Test() |
If ActiveShape.AbsoluteSkew <> 0 Then |
MsgBox "The current shape is skewed. Skew angle is " & _ |
ActiveShape.AbsoluteSkew |
End If |
End Sub |
Copyright 2013 Corel Corporation. All rights reserved.