InfoConnect for Airlines
Recording Property (Macro)
Example 


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