InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / InputMapActionSequence Class / Add Method
The action to add.
Example


In This Topic
    Add Method (InputMapActionSequence)
    In This Topic
    Adds an action to the action sequence.
    Syntax
    'Declaration
     
    
    Public Sub Add( _
       ByVal action As InputMapAction _
    ) 
    'Usage
     
    
    Dim instance As InputMapActionSequence
    Dim action As InputMapAction
     
    instance.Add(action)
    public void Add( 
       InputMapAction action
    )

    Parameters

    action
    The action to add.
    Example
    class program
    {
      InputMapActionSequence actionMap;
      InputMapAction  mapAction ;
                
      public InputMapAction Action
      {
        set{mapAction = value;} 
      }
                
      public void AddAction()
      {
        if(mapAction != null)
           actionMap.Add(mapAction);
      }
    }
    See Also