IMidiOutPort
IMidiOutPort
IMidiOutPort
IMidiOutPort
Interface
Definition
Represents a single MIDI out port.
public : interface IMidiOutPortpublic interface IMidiOutPortPublic Interface IMidiOutPort// You can use this interface in JavaScript.
- Inheritance
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Inherited Members
Inherited methods
Properties
DeviceId DeviceId DeviceId DeviceId
Gets the ID of the device that contains the MIDI out port.
public : PlatForm::String DeviceId { get; }public string DeviceId { get; }Public ReadOnly Property DeviceId As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The device ID.
Methods
SendBuffer(IBuffer) SendBuffer(IBuffer) SendBuffer(IBuffer) SendBuffer(IBuffer)
Sends the contents of the buffer through the MIDI out port.
public : void SendBuffer(IBuffer midiData)public void SendBuffer(IBuffer midiData)Public Function SendBuffer(midiData As IBuffer) As void// You can use this method in JavaScript.
Parameters
SendMessage(IMidiMessage) SendMessage(IMidiMessage) SendMessage(IMidiMessage) SendMessage(IMidiMessage)
Send the data in the specified MIDI message to the device associated with this MidiOutPort.
public : void SendMessage(IMidiMessage midiMessage)public void SendMessage(IMidiMessage midiMessage)Public Function SendMessage(midiMessage As IMidiMessage) As void// You can use this method in JavaScript.
Parameters
- midiMessage
- IMidiMessage IMidiMessage IMidiMessage IMidiMessage
The MIDI message to send to the device.
See Also
- IClosable IDisposable IDisposable IDisposable