Skew image
Visual Basic |
---|
Public Sub Skew( _ ByVal Angle As Double _ ) |
- Angle
- Positive value represents a clockwise angle.
!MISSING PHRASE '_ZONEFAIL'!
Skew image by 5.3 degrees clockwise
Copy Code | |
---|---|
Public 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 |