Mixer control type classes. These classes are roughly based upon what type of
value a control adjusts, and therefore what kind of graphical user interface
you would normally present to the enduser to let him adjust that control's value.
The descriptions for these classes have been taken from
http://www.borg.com/~jglatt/tech/mixer.htm.
Declaration Syntax
C# |
public enum MixerControlClass
Members
Member | Description |
---|---|
CUSTOM |
A custom class of control. If none of the others are applicable.
|
METER |
A control that is adjusted by a graphical meter.
|
SWITCH |
A control that is has only two states (ie, values), and is
therefore adjusted via a button.
|
NUMBER |
A control that is adjusted by numeric entry.
|
SLIDER |
A control that is adjusted by a horizontal slider
with a linear scale of negative and positive values.
(ie, Generally, 0 is the mid or "neutral" point).
|
FADER |
A control that is adjusted by a vertical fader, with
a linear scale of positive values (ie, 0 is the lowest
possible value).
|
TIME |
A control that allows the user to enter a time value, such
as Reverb Decay Time.
|
LIST |
A control that is adjusted by a listbox containing numerous
"values" to be selected. The user will single-select, or perhaps
multiple-select if desired, his choice of value(s).
|