PowerTools InputMan for ASP.NET 8.0J
FunctionKeyButton コンストラクタ
ボタンに割り当てるファンクションキー。
ボタンに表示するテキスト。
ファンクションキーボタンを定義します。
構文
// パラメータ
var functionKeys; //タイプ: FunctionKeys
var text; //タイプ: string

var instance = new GCIM.FunctionKeyButton(functionKeys, text);
function FunctionKeyButton( 
   functionKeys : FunctionKeys,
   text : string
) : FunctionKeyButton;

パラメータ

functionKeys
ボタンに割り当てるファンクションキー。
text
ボタンに表示するテキスト。
使用例
// ファンクションキーコントロールにファンクションキーボタンを追加する例です。
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);
参照

FunctionKeyButton オブジェクト

 

 


© 2005-2015 GrapeCity inc. All rights reserved.