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


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

パラメータ

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

戻り値の型

指定した条件に対して定義された入力マップを含む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.WhenAncestorOfFocused, FarPoint.Win.Spread.OperationMode.Normal);
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.WhenAncestorOfFocused, FarPoint.Win.Spread.OperationMode.Normal)
For i = 0 To im.AllKeys.Length - 1
    ListBox1.Items.Add(im.AllKeys(i).ToString())
Next
参照

SpreadView クラス
SpreadView メンバ
オーバーロード一覧
InputMapMode 列挙体
OperationMode 列挙体
InputMap クラス

開発者ガイド

キーボード操作

 

 


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