ClearImage COM Server Send comments on this topic.
Skew Method
See Also  Example
Angle
Positive value represents a clockwise angle.

Description

Skew image

Syntax

Visual Basic
Public Sub Skew( _
   ByVal Angle As Double _
) 

Parameters

Angle
Positive value represents a clockwise angle.

Remarks

This method generates an error if Image property is a zone.

Example

Skew image by 5.3 degrees clockwise
(Visual Basic)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

See Also