Skew image
Visual Basic |
---|
Public Sub Skew( _ ByVal Angle As Double _ ) |
Positive angle value causes clockwise rotation.
This method generates an error if object.Image.IsZone is true.
Sub T_Skew(ByRef Tools As CiTools) If (Tools.Image.IsZone) Then Debug.Print "Skew can not be applied to zone" Else Tools.Skew 5.3 End If End Sub