Spread Windows Forms 9.0 Product Documentation
Keys Method (ActionMap)
Example 


Returns the keys defined in this action map.
Syntax
'Declaration
 
Public Function Keys() As Object()
'Usage
 
Dim instance As ActionMap
Dim value() As Object
 
value = instance.Keys()
public object[] Keys()

Return Value

Object array containing the defined keys
Example
This example returns the keys defined in the map.
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);

int i;
FarPoint.Win.Spread.ActionMap map = fpSpread1.GetActionMap();
FarPoint.Win.Spread.Action act = map.Get(obj);
map.Put(k, act);
for (i = 0; i <= map.Keys.Length - 1; i++)
{
       listBox1.Items.Add(map.Keys(i).ToString());
}
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 i As Integer
Dim map As FarPoint.Win.Spread.ActionMap = FpSpread1.GetActionMap()
Dim act As FarPoint.Win.Spread.Action = map.Get(obj)
map.Put(k, act)
For i = 0 To map.Keys.Length - 1
       ListBox1.Items.Add(map.Keys(i).ToString())
Next 
Requirements

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

See Also

Reference

ActionMap Class
ActionMap Members

 

 


Copyright © GrapeCity, inc. All rights reserved.