Class InputBoxValueSetter<T>
Delegate (callback procedure) to set a new value back to the property inside the InputBox window.
Inheritance
object
InputBoxValueSetter<T>
Assembly: SprutCAMTech.SCPostprocessor.dll
Syntax
public sealed class InputBoxValueSetter<T> : MulticastDelegate
Type Parameters
Name |
Description |
T |
Type of the value for the property of InputBox window (int, double, string or bool).
|
Constructors
InputBoxValueSetter(object, IntPtr)
Declaration
public InputBoxValueSetter(object @object, IntPtr method)
Parameters
Type |
Name |
Description |
object |
object |
|
System.IntPtr |
method |
|
Methods
BeginInvoke(T, AsyncCallback, object)
Declaration
public virtual IAsyncResult BeginInvoke(T value, AsyncCallback callback, object @object)
Parameters
Type |
Name |
Description |
T |
value |
|
System.AsyncCallback |
callback |
|
object |
object |
|
Returns
Type |
Description |
System.IAsyncResult |
|
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
Type |
Name |
Description |
System.IAsyncResult |
result |
|
Invoke(T)
Declaration
public virtual void Invoke(T value)
Parameters
Type |
Name |
Description |
T |
value |
|