Spread Windows Forms 9.0 Product Documentation
ActionMap Constructor
Example 


Initializes an action map with no parent and no mappings.
Syntax
'Declaration
 
Public Function New()
'Usage
 
Dim instance As New ActionMap()
public ActionMap()
Example
This example returns all the default maps.
FarPoint.Win.Spread.ActionMap map;
map = fpSpread1.GetActionMap();
object[] keys = map.AllKeys();
foreach (object key in keys)
{
       listBox1.Items.Add(key);
}
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 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.