offset property

AudioParam offset

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 named offset is read-only, the value property within is not. So you can change the value of offset by setting the value of ConstantSourceNode.offset.value:

myConstantSourceNode.offset.value = newValue;

Implementation

AudioParam get offset;