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


In This Topic
    Recording Property (Macro)
    In This Topic
    Returns whether the macro recorder is currently recording.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property Recording As Boolean
    'Usage
     
    
    Dim instance As Macro
    Dim value As Boolean
     
    value = instance.Recording
    public bool Recording {get;}
    Example
    private Macro mac;
    //Gets the macro recorder Value.
    bool IsRecording = mac.Recording;
    See Also