|
Reference Guide
enumeration ParameterType
Definition
- typedef enum ParameterConstants {
-
-
- fSingleBit,
-
- fList,
-
- fTextList,
-
- fDiscrete
-
- fData,
- } ParameterType;
-
Descriptions
| fSingleBit |
The parameter is a single bit, 0 or 1. In application software, the parameter would be best represented by a checkbox control.
|
| fList |
The parameter is a numerical look-up table. The parameter would be best represented by a slider.
|
| fTextList |
The parameter is a string look-up table. The parameter would also be represented by a slider. fTextList parameters are usually numerical lists that are expressed in string form (i.e. "1/12", "1/6", "1/4", "1/3", "1/2", "1") or have individual non-numerical values (i.e. "-10", "-8", "-6", "-4", "-2", "Disabled").
|
| fDiscrete |
The parameter is a string look-up table where the values are discrete (the values themselves are not necessarily related). The parameter would best be represented by a drop-down list box.
|
| fData |
The parameter is a value that does not fit into the other categories, usually with a large range of possible values. The parameter would be best represented by a text box.
|
|