MIDIAccess: sysexEnabled property - Web APIs | MDN

Value

A boolean value.

Examples

The Navigator.requestMIDIAccess() method returns a promise that resolves with a MIDIAccess object. Printing the value of sysexEnabled to the console returns a boolean value, which is true if system exclusive support is enabled.

js

navigator.requestMIDIAccess().then((access) => {
  console.log(access.sysexEnabled);
});

Specifications

Specification
Web MIDI API
# dom-midiaccess-sysexenabled

Browser compatibility

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.