Images Property (Read Only)
Syntax
CWIMAQ.Images
Data Type
Purpose
Collection of CWIMAQImage objects that define the images into which your image acquisition device acquires data.
Remarks
Use this collection to set the number of images into which the image acquisition device acquires data during each acquisition.
Example
' Acquire a sequence of three images
Private Sub Run_Click()
' The collection has 1 image by default
' Add two more
CWIMAQ1.Images.Add(2)
' Acquire the images
CWIMAQ1.AcquireImage
End Sub