Property MLASFPlayer.TMLASFBasicPlayer.Paused
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: TMLASFBasicPlayer
Contents |
Syntax
Delphi:
property Paused : Boolean read FPaused write SetPaused default False;
C++ Builder:
__property bool Paused = { read=FPaused, write=SetPaused, default=False };
Summary
Pauses or resumes the playback.
Description
Pauses or resumes the player.
When the component is paused the external pumping is automatically turned on.
Delphi example:
ALASFPlayer1.Paused := True;
C++ Builder example:
ALASFPlayer1->Paused = true;
Visual C++ example:
ALASFPlayer1.Paused = true;
Visual C++/CLI example:
asfPlayer1->Paused = true;
C# Example:
asfPlayer1.Paused = true;
VB Example:
ASFPlayer1.Paused = true