Rotate
|
0 - No image rotation is performed
|
90 - The image is rotated 90° counterclockwise
|
180 - The image is rotated 180°
|
270 - The image is rotated -90° clockwise
|
|
pRotate [out,retval]
|
Pointer to the rotational angle.
|
Rotate [in]
|
The rotational angle to be set.
|
S_OK
|
Success
|
E_FAIL
|
Failure.
|
|
Private Sub Form_Load()
|
ActiveGige1.Acquire = True
|
Combo1.AddItem ("0°")
|
Combo1.AddItem ("90°")
|
Combo1.AddItem ("180°")
|
Combo1.AddItem ("270°")
|
Combo1.ListIndex = 0
|
End Sub
|
|
Private Sub Combo1_Click()
|
ActiveGige1.Rotate = Combo1.ListIndex
|
End Sub
|