Method procedure ALDSAudioOut.TALDSAudioOut.Disable()
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TALDSAudioOut
Contents |
Syntax
Delphi:
procedure Disable();
C++ Builder:
void __fastcall Disable();
Visual C++ (MFC):
void Disable();
Summary
Pauses(Disables) the audio output.
Description
Call this method to pause(Disables) the audio output. While paused the input buffers will be dropped.
Delphi example:
ALDSAudioOut1.Disable;
C++ Builder example:
ALDSAudioOut1->Disable();
Visual C++(MFC) example:
ALDSAudioOut1.Disable();
Visual C++/CLI example:
dsAudioOut1->Disable();
C# Example:
dsAudioOut1.Disable();
VB Example:
DSAudioOut1.Disable