Property VLAVIPlayer.TVLAVIPlayer.CurrentFrame
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: TVLAVIPlayer
Contents |
Syntax
Delphi:
property CurrentFrame : Cardinal read GetCurrentFrame write SetCurrentFrame;
C++ Builder:
__property unsigned int CurrentFrame = { read=GetCurrentFrame, write=SetCurrentFrame };
Summary
Current frame being played.
Description
Use this property to get or set the number of the current
frame being played by the player.
Delphi example:
AValue : Int64; AValue := VLAVIPlayer1.CurrentFrame;
C++ Builder example:
__int64 AValue = VLAVIPlayer1->CurrentFrame;
Visual C++(MFC) example:
__int64 AValue = VLAVIPlayer1.CurrentFrame;
Visual C++/CLI example:
Int64 value = aviPlayer1->CurrentFrame;
C# example:
Int64 value = aviPlayer1.CurrentFrame;
VB example:
Dim Value as Int64 = AVIPlayer1.CurrentFrame