Click or drag to resize

TpsControlBeginInvoke Method (EventHandler)

Executes the specified delegate asynchronously on the thread that the control's underlying handle was created on.

Namespace:  ABB.Robotics.Tps.Windows.Forms
Assembly:  ABB.Robotics.Tps.Windows.Forms (in ABB.Robotics.Tps.Windows.Forms.dll) Version: 6.5.129.0
Syntax
C#
public IAsyncResult BeginInvoke(
	EventHandler method
)

Parameters

method
Type: SystemEventHandler
A delegate to a method that takes no parameters.

Return Value

Type: IAsyncResult
An System.IAsyncResult that represents the result of the System.Windows.Forms.Control.BeginInvoke(System.Delegate) operation.
Remarks
This version only supports EventHandler methods, so the args must fit these parameters; otherwise an exception will be thrown.
See Also