InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / Macro Class / PauseRecording Method
Example


In This Topic
    PauseRecording Method (Macro)
    In This Topic
    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
    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