Interface IInputBoxEnumValuesList<T>
The list of possible values for the proerty inside the InputBox window. This list will be shown inside the combo box when user clicks to the value field of the property.
Namespace: SprutTechnology.SCPostprocessor
Assembly: SCPostprocessor.dll
Syntax
public interface IInputBoxEnumValuesList<T>
Type Parameters
Name | Description |
---|---|
T | Type of the value for the property of InputBox window (int, double, string or bool). |
Methods
AddValue(T, String)
Adds a new possible value of the property to the list (combo box).
Declaration
void AddValue(T value, string caption)
Parameters
Type | Name | Description |
---|---|---|
T | value | The value to add to the list (combo box). |
System.String | caption | The text string shown to the user that matches the added value. |