Class MIDIAccess
- Namespace
- CSharpToJavaScript.APIs.JS
- Assembly
- CSharpToJavaScript.dll
The MIDIAccess interface of the Web MIDI API provides methods for listing MIDI input and output devices, and obtaining access to those devices.
[Value("MIDIAccess")]
public class MIDIAccess : EventTarget
- Inheritance
-
MIDIAccess
- Inherited Members
Remarks
MIDIAccess is a transferable object.
Constructors
MIDIAccess()
public MIDIAccess()
Properties
Inputs
The inputs read-only property of the MIDIAccess interface provides access to any available MIDI input ports.
[Value("inputs")]
public MIDIInputMap Inputs { get; }
Property Value
- MIDIInputMap
A MIDIInputMap instance.
Remarks
Onstatechange
[Value("onstatechange")]
public EventHandlerNonNull Onstatechange { get; set; }
Property Value
Outputs
The outputs read-only property of the MIDIAccess interface provides access to any available MIDI output ports.
[Value("outputs")]
public MIDIOutputMap Outputs { get; }
Property Value
- MIDIOutputMap
A MIDIOutputMap instance.
Remarks
SysexEnabled
The sysexEnabled read-only property of the MIDIAccess interface indicates whether system exclusive support is enabled on the current MIDIAccess instance.
[Value("sysexEnabled")]
public bool SysexEnabled { get; }
Property Value
- bool
A boolean value.