GrapeCity.Win.PluginInputMan Assembly > GrapeCity.Win.Spread.InputMan.CellType Namespace > InputManCellTypeBase Class : ShortcutKeys Property |
'Declaration Public Property ShortcutKeys As ShortcutDictionary
'Usage Dim instance As InputManCellTypeBase Dim value As ShortcutDictionary instance.ShortcutKeys = value value = instance.ShortcutKeys
public ShortcutDictionary ShortcutKeys {get; set;}
This example uses the ShortcutKeys property. Use the Tab key to put a date in the cell. The following image displays the list of actions that you can use.
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
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10