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


In This Topic
    ResumeRecording Method (Macro)
    In This Topic
    Resumes recording a macro in the current terminal session.
    Syntax
    'Declaration
     
    
    Public Sub ResumeRecording() 
    'Usage
     
    
    Dim instance As Macro
     
    instance.ResumeRecording()
    public void ResumeRecording()
    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 ResumeRecording() method.
    mac.ResumeRecording();
    See Also