Property ALOggPlayer.TALOggPlayer.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: TALOggPlayer
Contents |
Syntax
Delphi:
property Paused : Boolean read FPaused write SetPaused;
C++ Builder:
__property bool Paused = { read=FPaused, write=SetPaused };
Summary
Pauses or resumes the playback.
Description
Use this property to pause or resume the playback.
When the component is paused the external pumping is automatically turned on.
Delphi example:
ALOggPlayer1.Paused := True;
C++ Builder example:
ALOggPlayer1->Paused = true;
Visual C++(MFC/Win32) example:
ALOggPlayer1.Paused = true;
C# example:
oggPlayer1.Paused = true;