ICImagingControl.Exposure Property |
||
Returns or sets the exposure value of the current video source. | ||
Syntax: | Public Exposure As Long |
|
Sample: | This Basic example initializes a Slider control with the selected video device's minimum, maximum and exposure enable settings. When the slider is moved, the video device's color enable value is updated accordingly: Private Sub Form_Load() Dim Range As Variant Range = ICImagingControl1.ExposureRange Slider1.Min = Range(0) Slider1.Max = Range(1) Slider1.Value = ICImagingControl1.Exposure End Sub Private Sub Slider1_Scroll() ICImagingControl1.Exposure = Slider1.Value End Sub |
|
See also: | ICImagingControl, ICImagingControl.ExposureAvailable, ICImagingControl.ExposureRange, ICImagingControl.ExposureAutoAvailable, ICImagingControl.ExposureAuto, ICImagingControl.ExposureDefault |