GrapeCity.Win.PluginInputMan アセンブリ > GrapeCity.Win.Spread.InputMan.CellType 名前空間 > InputManCellTypeBase クラス : ShortcutKeys プロパティ |
'宣言
Public Property ShortcutKeys As ShortcutDictionary
public ShortcutDictionary ShortcutKeys {get; set;}
次のサンプルコードは、ShortcutKeysプロパティを使用します。[Tab]キーを使用してセルに日付を設定します。使用可能なアクションの一覧を次の図に示します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType inputcell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType(); inputcell.ShortcutKeys.Add(System.Windows.Forms.Keys.Tab, "SetNow"); fpSpread1.Sheets[0].Cells[0, 0].CellType = inputcell; //GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType gcText = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType(); //gcText.Multiline = true; //gcText.ShortcutKeys.Add(Keys.Enter | Keys.Alt, "InputNewLine"); //fpSpread1.Sheets[0].Cells[0, 0].CellType = gcText;
Dim inputcell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType() inputcell.ShortcutKeys.Add(System.Windows.Forms.Keys.Tab, "SetNow") fpSpread1.Sheets(0).Cells(0, 0).CellType = inputcell 'Dim gcText As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType() 'gcText.Multiline = True 'gcText.ShortcutKeys.Add(Keys.Enter Or Keys.Alt, "InputNewLine") 'fpSpread1.Sheets(0).Cells(0, 0).CellType = gcText