blob: 02711f32b55b53a83a38d110654cc56b89e06562 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
---
title: complete
slug: Web/API/OfflineAudioContext/complete_event
translation_of: Web/API/OfflineAudioContext/complete_event
original_slug: Web/Events/complete
---
L'événement **complete** est déclenché lorsque le rendu d'un {{domxref("OfflineAudioContext")}} est terminé.
## Informations générales
- Spécification
- : {{SpecName('Web Audio API', '#OfflineAudioCompletionEvent-section', 'OfflineAudioCompletionEvent')}}
- Interface
- : {{domxref("OfflineAudioCompletionEvent")}}
- Propagation
- : ?
- Annulable
- : ?
- Cible
- : {{domxref("OfflineAudioContext")}}
- Action par défaut
- : Aucune
## Propriétés
| Property | Type | Description |
| ----------------------------------------- | ------------------------------------ | ------------------------------------------------------------------------------------------------------ |
| `target` {{readonlyInline}} | {{domxref("EventTarget")}} | The event target (the topmost target in the DOM tree). |
| `type` {{readonlyInline}} | {{domxref("DOMString")}} | The type of event. |
| `bubbles` {{readonlyInline}} | {{jsxref("Boolean")}} | Whether the event normally bubbles or not. |
| `cancelable` {{readonlyInline}} | {{jsxref("Boolean")}} | Whether the event is cancellable or not. |
| `renderedBuffer` {{readonlyInline}} | {{domxref("AudioBuffer")}} | The buffer containing the result of the processing of an {{domxref("OfflineAudioContext")}}. |
## Evénements liés
_Aucun_
## Spécifications
| Spécification | Statut | Commentaire |
| ------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------ | ----------- |
| {{SpecName('Web Audio API', '#OfflineAudioCompletionEvent-section', 'OfflineAudioCompletionEvent')}} | {{Spec2('Web Audio API')}} | |
## Voir aussi
- [Web Audio API](/fr/docs/Web_Audio_API)
|