ICImagingControl.Zoom Property

Returns or sets the zoom value of the current video source.
Syntax:
Public Zoom As Long
Sample:

This example initializes a Slider control with the selected video device's minimum, maximum and current zoom settings. When the slider is moved, the video device's zoom value is updated accordingly:

Private Sub Form_Load()
    Dim Range As Variant
    Range = ICImagingControl1.ZoomRange
    Slider1.Min = Range(0)
    Slider1.Max = Range(1)
    Slider1.Value = ICImagingControl1.Zoom
End Sub

Private Sub Slider1_Scroll()
    ICImagingControl1.Zoom = Slider1.Value
End Sub
See also: ICImagingControl, ICImagingControl.ZoomAvailable, ICImagingControl.ZoomRange, ICImagingControl.ZoomAutoAvailable, ICImagingControl.ZoomAuto, ICImagingControl.ZoomDefault

<< ICImagingControl