Click or drag to resize

TpsControlBeginInvoke Method (EventHandler, Object)

Executes the specified delegate asynchronously with the specified arguments, 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,
	params Object[] args
)

Parameters

method
Type: SystemEventHandler
A delegate to a method that takes parameters of the same number and type that are contained in the args parameter.
args
Type: SystemObject
An array of objects to pass as arguments to the given method. This can be null if no arguments are needed.

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