Description
This McCaptDevice instance is requesting a snap of a single frame from the UI.
Syntax
Private Sub object_PerformSnap(CaptureDevice, Flags, vImage, rVal)
The PerformSnap Event syntax has these parts:
|
| object | A McCapture object. | | CaptureDevice | A McCaptDevice object. the event source device. Image : The image frame used for the snap.
| | Flags | A mcImageCreateFlags enumeration, as described in settings. | | vImage | A Variant value. | | rVal | A McImage object. |
Settings The settings for Flags are:
 | mcicfDefault | 0 | |
 | mcicfContiguous | 1 |
If set, frames are allocated contiguously, and you cannot add to the FrameCount at a later time.
|
 | mcicfNoInit | 2 |
Default is to initialize to 0 (black), this flag suppresses initialization.
|
 | mcicfNoAddToCollection | 4 |
If set, the image is created, but not added to the collection (see Notes).
|
 | mcicfNotVisible | 8 |
If set, the image is created, possibly added to collection (see above), but not made visible.
|
 | mcipfNoImportProperties | 8388608 |
Suppress ImportProperties for functions creating an image from another.
|
|