PowerTools SPREAD for Windows Forms 8.0J
GetInputMap(InputMapMode) メソッド


フォーカスモード(コントロールまたはコントロールの子)
ビューの指定したフォーカスモードに定義された入力マップを取得します。
構文
'Declaration
 
Public Overloads Overridable Function GetInputMap( _
   ByVal inputMapMode As InputMapMode _
) As InputMap
'使用法
 
Dim instance As SpreadView
Dim inputMapMode As InputMapMode
Dim value As InputMap
 
value = instance.GetInputMap(inputMapMode)
public virtual InputMap GetInputMap( 
   InputMapMode inputMapMode
)

パラメータ

inputMapMode
フォーカスモード(コントロールまたはコントロールの子)

戻り値の型

指定した条件に対して定義された入力マップを含むInputMapオブジェクト
次のサンプルコードは、GetInputMapメソッドを使用します。
int i;
FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook();
FarPoint.Win.Spread.InputMap im = new FarPoint.Win.Spread.InputMap();
im = sv.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenFocused);
for (i = 0; i <= im.AllKeys().Length -1; i++)
{
    listBox1.Items.Add(im.AllKeys()[i].ToString());
}
Dim sv As FarPoint.Win.Spread.SpreadView = FpSpread1.GetRootWorkbook
Dim i As Integer
Dim im As New FarPoint.Win.Spread.InputMap()
im = sv.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenFocused)
For i = 0 To im.AllKeys.Length - 1
    ListBox1.Items.Add(im.AllKeys(i).ToString())
Next
参照

SpreadView クラス
SpreadView メンバ
オーバーロード一覧
InputMapMode 列挙体
InputMap クラス
キーボード操作

 

 


© 2004-2015, GrapeCity inc. All rights reserved.