Sends current image to a target IEImage, after "delay" milliseconds and then each "interval" milliseconds.
This is useful to display captured frames to another control with delay.
You can (but you don't need to do) end frame sending calling IEImage.EndPostFrames.
Multiple calls to BeginPostFrames are possible.
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0
Syntax
C# | Visual Basic | Visual C++ |
Parameters
- target
- IEImage
The target image.
- delay
- Int32
Delay in milliseconds.
- interval
- Int32
Interval between frames in milliseconds.
Examples
CopyC#
// sends current image to IEViewer2 after 5 seconds, and to IEViewer3 after 10 seconds, at 50 ms for each frame IEViewer1.Image.BeginPostFrames(IEViewer2.Image,5000,50); IEViewer1.BeginPostFrames(IEViewer3.Image,10000,50);