Examples:
The following VBA example displays a warning message if the active shape has been stretched horizontally or vertically (or both).
Sub Test()
If ActiveShape.AbsoluteHScale <> 1 Or ActiveShape.AbsoluteVScale <> 1 Then
MsgBox "The current shape is distored"
End If
End Sub