Parameters
- key
- Keyboard key for which to get binding
Return Value
Action object containing the action
This example returns the map for the InputMap object.
Note: This returns the obfuscated string of the StopEditingAction class, which is the default map for the Enter key. It is a meaningless string to the user. The object variable would return the StopEditing action.
FarPoint.Win.Spread.Keystroke k = new FarPoint.Win.Spread.Keystroke(Keys.Enter, Keys.None);
Object obj = fpSpread1.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenAncestorOfFocused).Get(k);
FarPoint.Win.Spread.ActionMap map = fpSpread1.GetActionMap();
listBox1.Items.Add(map.Get(obj));
Dim k As New FarPoint.Win.Spread.Keystroke(Keys.Enter, Keys.None) Dim obj As Object = fpSpread1.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenAncestorOfFocused).Get(k) Dim map As FarPoint.Win.Spread.ActionMap = fpSpread1.GetActionMap() ListBox1.Items.Add(map.Get(obj))