Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / ActionMap Class / Clear Method
Example


In This Topic
    Clear Method (ActionMap)
    In This Topic
    Removes all the mappings from this action map.
    Syntax
    'Declaration
     
    Public Sub Clear() 
    'Usage
     
    Dim instance As ActionMap
     
    instance.Clear()
    public void Clear()
    Example
    This example removes all the maps.
    FarPoint.Win.Spread.ActionMap map;
    map = fpSpread1.GetActionMap();
    map.Clear();
    
    Dim map As FarPoint.Win.Spread.ActionMap
    map = fpSpread1.GetActionMap()
    map.Clear()
    See Also