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.
Namespace: SprutTechnology.SCPostprocessor
Assembly: SCPostprocessor.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). |