Returns the keys that are defined in this action map and its parent.
            
            
            
Syntax
| Visual Basic (Declaration) |   | 
|---|
Public Function AllKeys() As Object()  | 
 
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As ActionMap
Dim value() As Object
 
value = instance.AllKeys()  | 
 
            
            
            Return Value
Object array containing all the keys
 
            
						
            
            
            
            
Example
This example returns the default maps.
             
| C# |  Copy Code | 
|---|
FarPoint.Win.Spread.ActionMap map;
map = fpSpread1.GetActionMap();
object[] keys = map.AllKeys();
foreach (object key in keys)
{
       listBox1.Items.Add(key);
}
 | 
 
| Visual Basic |  Copy Code | 
|---|
Dim map As FarPoint.Win.Spread.ActionMap, AllKeys
map = FpSpread1.GetActionMap()
Dim keys As Object() = map.AllKeys()
Dim key As Object
For Each key In keys
       ListBox1.Items.Add(key)
Next | 
 
 
            
            
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