Firefox Tomorrow

web api instance property

MIDIAccess: sysexEnabled property

View on MDN ↗

Secure context

The sysexEnabled read-only property of the MIDIAccess interface indicates whether system exclusive support is enabled on the current MIDIAccess instance.

Value

A boolean value.

Examples

The 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.

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

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.