Property MLASFPlayer.TMLASFBasicPlayer.Loop
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
(3 intermediate revisions by one user not shown) |
Latest revision as of 00:10, 26 June 2013
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 Loop : Boolean read FLoop write FLoop default False;
C++ Builder:
__property bool Loop = { read=FLoop, write=FLoop, default=False };
Summary
Replayed again after the end.
Description
If Loop is set to True the component will start playing the
AVI file from the beginning after the last frame.
If Loop is set to False the playback will stop after the last frame.
Delphi example:
<c>ALASFPlayer1.Loop := True;</c>
C++ Builder example:
<c>ALASFPlayer1->Loop = true;</c>
Visual C++(MFC) example:
<c>ALASFPlayer1.Loop = true;</c>
Visual C++/CLI example:
<c>asfPlayer1->Loop = true;</c>
C# example:
<c>asfPlayer1.Loop = true;</c>
VB example:
<c>ASFPlayer1.Loop = True</c>