InfoConnect for Airlines
Add Method (InputMapActionSequence)
Example 


The action to add.
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