value property
The Web Audio
API's
AudioParam property value
gets
or sets the value of this AudioParam at the current time. Initially, the
value is set to AudioParam.defaultValue.
Setting value
has the same effect as
calling AudioParam.setValueAtTime with the time returned by the
AudioContext
's BaseAudioContext.currentTime
property.
Implementation
double get value;
Implementation
set value(num value);