Delegate InputBoxValueSetter<T>
Delegate (callback procedure) to set a new value back to the property inside the InputBox window.
Assembly: DotnetPostprocessing.SDK.dll
Syntax
public delegate void InputBoxValueSetter<T>(T value)
Parameters
Type |
Name |
Description |
T |
value |
The new value to assign to the property.
|
Type Parameters
Name |
Description |
T |
Type of the value for the property of InputBox window (int, double, string or bool).
|
Constructors
InputBoxValueSetter(object, nint)
Declaration
public InputBoxValueSetter(object @object, nint method)
Parameters
Methods
BeginInvoke(T, AsyncCallback, object)
Declaration
public virtual IAsyncResult BeginInvoke(T value, AsyncCallback callback, object @object)
Parameters
Returns
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
Invoke(T)
Declaration
public virtual void Invoke(T value)
Parameters
Type |
Name |
Description |
T |
value |
|