offset property
The read-only offset
property of the ConstantSourceNode
returns a AudioParam object indicating the numeric
a-rate
value which is always returned
by the source when asked for the next sample.
Note: While the
AudioParam
namedoffset
is read-only, thevalue
property within is not. So you can change the value ofoffset
by setting the value ofConstantSourceNode.offset.value
:myConstantSourceNode.offset.value = newValue;
Implementation
AudioParam get offset;