ICImagingControl.Roll Property |
||
Returns or sets the roll value of the current video source. | ||
Syntax: | Public Roll As Long |
|
Sample: | This example initializes a Slider control with the selected video device's minimum, maximum and current roll settings. When the slider is moved, the video device's roll value is updated accordingly: Private Sub Form_Load() Dim Range As Variant Range = ICImagingControl1.RollRange Slider1.Min = Range(0) Slider1.Max = Range(1) Slider1.Value = ICImagingControl1.Roll End Sub Private Sub Slider1_Scroll() ICImagingControl1.Roll = Slider1.Value End Sub |
|
See also: | ICImagingControl, ICImagingControl.RollAvailable, ICImagingControl.RollRange, ICImagingControl.RollAutoAvailable, ICImagingControl.RollAuto, ICImagingControl.RollDefault |