Spread Windows Forms 7.0 Product Documentation
Get Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > ActionMap Class : Get Method


key
Keyboard key for which to get binding

Glossary Item Box

Returns the binding to an action for the specified key.

Syntax

Visual Basic (Declaration) 
Public Function Get( _
   ByVal key As Object _
) As Action
Visual Basic (Usage)Copy Code
Dim instance As ActionMap
Dim key As Object
Dim value As Action
 
value = instance.Get(key)
C# 
public Action Get( 
   object key
)

Parameters

key
Keyboard key for which to get binding

Return Value

Action object containing the action

Remarks

This method queries the parent action map if the binding is not defined in the current action map.

Example

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.

C#Copy Code
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));
Visual BasicCopy Code
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))

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.