This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

AudioParam.cancelScheduledValues()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015년 7월⁩.

AudioParam 인터페이스의 cancelScheduledValues() 메서드는 AudioParam 에 예정된 모든 미래의 변화를 취소합니다.

구문

js
var AudioParam = AudioParam.cancelScheduledValues(startTime);

매개변수

startTime

AudioContext가 처음 생성된 이후 모든 예정된 변화가 취소될 시간 (초 단위로 표현됨) 을 나타내는 double.

반환

AudioParam 객체에 대한 참조. 몇몇 오래된 구현에서 이 메서드는 void를 반환합니다.

예제

js
var gainNode = audioCtx.createGain();
gainNode.gain.setValueCurveAtTime(waveArray, audioCtx.currentTime, 2); // 'gain' 이 AudioParam입니다.
gainNode.gain.cancelScheduledValues(audioCtx.currentTime);

명세서

Specification
Web Audio API
# dom-audioparam-cancelscheduledvalues

브라우저 호환성

같이 보기