Copyright © 2005-2008 MultiMedia Soft 
Return to Table of contents  
 
CheckOutputDevicesLatency property 
 
Type
[Visual Basic] 
Public Property CheckOutputDevicesLatency As Boolean
 
[C#] 
public bool CheckOutputDevicesLatency {get; set;}
 
[C++] 
public: __property bool get_CheckOutputDevicesLatency(); 
public: __property void set_CheckOutputDevicesLatency(bool);
 
 
Remarks
Boolean value that determines if the control will have to perform a calculation of the sound card drivers latency time. For details about latency, take a look to the How to deal with latency section. 
 
Supported values are the following: 
Value
Meaning
false (default)
The sound card drivers latency time won't be calculated
true
The sound card drivers latency time will be calculated: this will require the InitSoundSystem method a longer time to execute.
 
NOTE: This property can be set at Design-time only: changes made at Runtime will be simply ignored.
 
 
 
 
 
 
 
 
Copyright © 2005-2008 MultiMedia Soft 
Return to Table of contents