Property VLDSVideoPlayer.TVLDSVideoPlayer.AudioPreview
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: TVLDSVideoPlayer
Contents |
Syntax
Delphi:
property AudioPreview : TALDSAudioPreview read FAudioPreview write SetAudioPreview;
C++ Builder:
__property TALDSAudioPreview * AudioPreview = { read=FAudioPreview, write=SetAudioPreview };
Summary
Enables Audio Preview.
Description
Use this property to enable or disable the audio preview
during the playback.
Delphi example:
VLAVIPlayer1.AudioPreview.Enabled := True;
C++ Builder example:
VLAVIPlayer1->AudioPreview->Enabled = true;
Visual C++(MFC) example:
VLAVIPlayer1.AudioPreview.Enabled = true;
Visual C++/CLI example:
aviPlayer1->AudioPreview->Enabled = true;
C# example:
aviPlayer1.AudioPreview.Enabled = true;
VB example:
AVIPlayer1.AudioPreview.Enabled = True