Property VLAVIPlayer.TVLAVIPlayer.InitialFrame
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: TVLAVIPlayer
Contents |
Syntax
Delphi:
property InitialFrame : Cardinal read FInitialFrame write SetInitialFrame default 0;
C++ Builder:
__property unsigned int InitialFrame = { read=FInitialFrame, write=SetInitialFrame, default=0 };
Summary
Specifies the initial starting frame to be played.
Description
Use this property to specify the initial starting frame to be
played. The player will start playing from this frame. If the
Loop property is set to True, the InitialFrame property will
be ignored after the first loop.
Delphi example:
VLAVIPlayer1.InitialFrame := 50;
C++ Builder example:
VLAVIPlayer1->InitialFrame = 50;
Visual C++(MFC) example:
VLAVIPlayer1.InitialFrame = 50;
Visual C++/CLI example:
aviPlayer1->InitialFrame = 50;
C# example:
aviPlayer1.InitialFrame = 50;
VB example:
AVIPlayer1.InitialFrame = 50