Delegate InputBoxEnumValuesFormer<T>
A delegate (callback procedure) that allows you to fill a list of possible values for the adding
property. It will be shown as a combo box.
Assembly: DotnetPostprocessing.SDK.dll
Syntax
public delegate void InputBoxEnumValuesFormer<T>(IInputBoxEnumValuesList<T> list)
Parameters
Type |
Name |
Description |
IInputBoxEnumValuesList<T> |
list |
The list of possible values for the proerty. Use "list.AddValue()" method to add
possible values to the list.
|
Type Parameters
Name |
Description |
T |
Type of the value for the property of InputBox window (int, double, string or bool).
|
Constructors
InputBoxEnumValuesFormer(object, nint)
Declaration
public InputBoxEnumValuesFormer(object @object, nint method)
Parameters
Methods
BeginInvoke(IInputBoxEnumValuesList<T>, AsyncCallback, object)
Declaration
public virtual IAsyncResult BeginInvoke(IInputBoxEnumValuesList<T> list, AsyncCallback callback, object @object)
Parameters
Returns
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
Invoke(IInputBoxEnumValuesList<T>)
Declaration
public virtual void Invoke(IInputBoxEnumValuesList<T> list)
Parameters