InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / Macro Class / RecordingPaused Property
Example


In This Topic
    RecordingPaused Property (Macro)
    In This Topic
    Returns whether the macro recorder is currently paused.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property RecordingPaused As Boolean
    'Usage
     
    
    Dim instance As Macro
    Dim value As Boolean
     
    value = instance.RecordingPaused
    public bool RecordingPaused {get;}
    Example
    private Macro mac;
    //Get the value if the recording paused or not.
    bool IsPaused = mac.RecordingPaused;
    See Also