GCIM 名前空間 > FunctionKeyButton タイプ : FunctionKeyButton コンストラクタ |
// パラメータ var functionKeys; //タイプ: FunctionKeys var text; //タイプ: string var instance = new GCIM.FunctionKeyButton(functionKeys, text);
function FunctionKeyButton( functionKeys : FunctionKeys, text : string ) : FunctionKeyButton;
// ファンクションキーコントロールにファンクションキーボタンを追加する例です。 var functionKey = FindIMControl("GcFunctionKey1"); var button1 = new GCIM.FunctionKeyButton("F1","[F1]キー"); var button2 = new GCIM.FunctionKeyButton("Control,F2","[Ctrl + F2]キー"); functionKey.AddFunctionKeyButton(button1); functionKey.AddFunctionKeyButton(button2);