MIDIPort: type プロパティ
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
安全なコンテキスト用: この機能は一部またはすべての対応しているブラウザーにおいて、安全なコンテキスト (HTTPS) でのみ利用できます。
MIDIPort
インターフェイスの読み取り専用プロパティ type
は、ポートの種類を返し、この MIDI ポートが入力ポートなのか出力ポートなのかを表します。
値
例
以下の例では、すべての入力ポートを走査し、その type
をコンソールに出力します。
js
for (const entry of midiAccess.inputs) {
const input = entry[1];
console.log(input.type); // 常に input のはず
}
仕様書
Specification |
---|
Web MIDI API # dom-midiport-type |
ブラウザーの互換性
BCD tables only load in the browser