InfoConnect for Airlines
PauseRecording Method (Macro)
Example 


Pauses the macro recorder in the current terminal session.
Syntax
'Declaration
 
Public Sub PauseRecording() 
'Usage
 
Dim instance As Macro
 
instance.PauseRecording()
public void PauseRecording()
Exceptions
ExceptionDescription
System.InvalidOperationException Thrown if the macro recorder is not currently recording.
Remarks
This method is valid only when the macro recorder is running. The method does nothing if the recorder is already paused.
Example
private Macro mac;
//Call The PauseRecording method.
mac.PauseRecording();
See Also