Spread Windows Forms 12.0 Product Documentation
Parent Property (ActionMap)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > ActionMap Class : Parent Property
Gets or sets the parent action map (ActionMap object) of this action map.
Syntax
'Declaration
 
Public Property Parent As ActionMap
'Usage
 
Dim instance As ActionMap
Dim value As ActionMap
 
instance.Parent = value
 
value = instance.Parent
public ActionMap Parent {get; set;}

Property Value

Parent ActionMap
Example
This example returns the parent for the keys in the map.
FarPoint.Win.Spread.ActionMap map, parent;
map = fpSpread1.GetActionMap();
object[] keys = map.AllKeys();
parent = map.Parent;
foreach (object key in keys)
{
       listBox1.Items.Add(parent.Get(key).ToString());;
}
Dim map, parent As FarPoint.Win.Spread.ActionMap
map = fpSpread1.GetActionMap()
Dim keys As Object() = map.AllKeys()
Dim key As Object
parent = map.Parent
For Each key In keys
       ListBox1.Items.Add(parent.Get(key).ToString())
Next
See Also

Reference

ActionMap Class
ActionMap Members