「App:Library:FabGL:Enumerations:VGAScanStart」の版間の差分

提供: robot-jp wiki
ナビゲーションに移動検索に移動
(ページの作成:「 ----[https://robot-jp.com/wiki/index.php/App:Library:FabGL:Enumerations 戻る]」)
 
1行目: 1行目:
 +
== enum VGAScanStart ==
 +
この列挙型は、キーボード仮想キーの処理方法を定義します。
 +
{| class="wikitable"
 +
! colspan="2" |'''Enumerator'''
 +
|-
 +
|NoVirtualKeys
 +
|No virtual keys are generated
 +
|-
 +
|GenerateVirtualKeys
 +
|Virtual keys are generated. You can call Keyboard.isVKDown() only.
 +
|-
 +
|CreateVirtualKeysQueue
 +
|Virtual keys are generated and put on a queue. You can call Keyboard.isVKDown(), Keyboard.virtualKeyAvailable() and Keyboard.getNextVirtualKey()
 +
|}
 +
'''[http://www.fabglib.org/vgabasecontroller_8h_source.html#l00090 line 90 of file vgabasecontroller.h]'''に定義されています。
  
  
  
 
----[https://robot-jp.com/wiki/index.php/App:Library:FabGL:Enumerations 戻る]
 
----[https://robot-jp.com/wiki/index.php/App:Library:FabGL:Enumerations 戻る]

2022年3月21日 (月) 22:55時点における版

enum VGAScanStart

この列挙型は、キーボード仮想キーの処理方法を定義します。

Enumerator
NoVirtualKeys No virtual keys are generated
GenerateVirtualKeys Virtual keys are generated. You can call Keyboard.isVKDown() only.
CreateVirtualKeysQueue Virtual keys are generated and put on a queue. You can call Keyboard.isVKDown(), Keyboard.virtualKeyAvailable() and Keyboard.getNextVirtualKey()

line 90 of file vgabasecontroller.hに定義されています。



戻る