InfoConnect for Unisys
RecordingPaused Property (Macro)
Example 


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