Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
Status property (RO) 
 
Type
[Visual Basic] 
Public Property Status As enumRecorderStates
 
[C#] 
public enumRecorderStates Status {get;}
 
[C++] 
public: __property enumRecorderStates get_Status();
 
This property is Read-only
 
 
Remarks
Contains the recording status of the control. 
 
Supported values are the following: 
Mnemonic Value
Numeric value
Meaning
RECORD_STATUS_NONE
0
The recorder is in a undetermined status (no sound is being recorded)
RECORD_STATUS_RECORDING
1
The recorder is recording sound from an input device
RECORD_STATUS_SILENT
2
The recorder is recording sound but at the moment is receiving silent data that will be discarded. 
For further details see the How the Sound Activation System works section.
RECORD_STATUS_CD_RIPPING
3
The recorder is ripping a CD audio track
RECORD_STATUS_PAUSED
4
The recorder is paused
RECORD_STATUS_PLAYING
5
The recorder is playing back the latest recording session
RECORD_STATUS_PLAYING_PAUSED
6
The recorder is in paused state during the playback of the latest recording session
RECORD_STATUS_RECORDING_URL
7
The recorder is recording sound from an Internet URL
RECORD_STATUS_RECORDING_FILE
8
The recorder is recording sound from a file stored on the hard disk
RECORD_STATUS_RECORDING_MEMORY
9
The recorder is recording sound from a memory buffer
RECORD_STATUS_RECORDING_CLIPBOARD
10
The recorder is recording sound from the system clipboard
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents