Spread Windows Forms 6.0 Product Documentation
ActionMap Constructor
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > ActionMap Class : ActionMap Constructor


Glossary Item Box

Initializes an action map with no parent and no mappings.

Syntax

Visual Basic (Declaration) 
Public Function New()
Visual Basic (Usage)Copy Code
Dim instance As New ActionMap()
C# 
public ActionMap()

Example

This example returns all 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 BasicCopy 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 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

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