This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The cancelAndHoldAtTime()
property of the AudioParam
interface cancels all scheduled future changes to the AudioParam
but holds its value at a given time until further changes are made using other methods. The new value is given in the value
parameter.
Syntax
var audioParam = AudioParam.cancelAndHoldAtTime(cancelTime)
Parameters
- cancelTime
- A double representing the time (in seconds) after the
AudioContext
was first created after which all scheduled changes will be cancelled.
Return value
A reference to the AudioParam
it was called on.
Specifications
Specification | Status | Comment |
---|---|---|
Web Audio API The definition of 'cancelAndHoldAtTime()' in that specification. |
Working Draft | Initial definition. |
Browser Compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Feature | Chrome | Edge | Firefox | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 57 Yes — 561 | ? | No | No | 44 Yes — 431 | No |
Feature | Android webview | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic support | 57 Yes — 561 | 57 Yes — 561 | Yes | No | No | 44 Yes — 431 | No |
1. Supported as cancelValuesAndHoldAtTime()
.