PowerTools InputMan for Windows Forms 8.0J
GetShortcuts メソッド
使用例 

ショートカットの設定が関連付けられているControlオブジェクト。
コントロールに関連付けられているショートカットの設定を取得します。
構文
Public Function GetShortcuts( _
   ByVal control As Control _
) As ShortcutCollection
public ShortcutCollection GetShortcuts( 
   Control control
)

パラメータ

control
ショートカットの設定が関連付けられているControlオブジェクト。

戻り値の型

ショートカットの設定を保持するShortcutCollectionコレクション。
例外
例外解説
System.ArgumentNullExceptioncontrolがnull 参照 (Visual Basicでは Nothing)です。
解説
GetShortcuts メソッドを使用すると、任意のコントロールのショートカットキーを取得できます。この設定を変更するには、SetShortcuts メソッドを使用します。
使用例
GcTextBox コントロールと GcShortcut コンポーネントを作成するコード例を次に示します。この例では GetShortcuts メソッドの使用方法を示しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void GetShortcutKeySettings()
{
    // Creates an instace of the GcTextBox control.
    GcTextBox gcTextBox1 = new GcTextBox();
    // Creates an instace of the GcShortcut component.
    GcShortcut gcShortcut1 = new GcShortcut();
    // Adds a new shortcut key and shortcut action to the gcTextBox.
    gcShortcut1.GetShortcuts(gcTextBox1).Add(Keys.Enter, gcShortcut1, "NextControl");
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub GetShortcutKeySettings()
    ' Creates an instace of the GcTextBox control.
    Dim gcTextBox1 As New GcTextBox()
    ' Creates an instace of the GcShortcut component.
    Dim gcShortcut1 As New GcShortcut()
    ' Adds a new shortcut key and shortcut action to the gcTextBox.
    gcShortcut1.GetShortcuts(gcTextBox1).Add(Keys.Enter, gcShortcut1, "NextControl")
End Sub
参照

GcShortcut クラス
GcShortcut メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.