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.

Namespace: HiComponents.IEvolution
Assembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public void BeginPostFrames(
	IEImage target,
	int delay,
	int interval
)
Public Sub BeginPostFrames ( _
	target As IEImage, _
	delay As Integer, _
	interval As Integer _
)
public:
void BeginPostFrames(
	IEImage^ target, 
	int delay, 
	int interval
)

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);

See Also