Property VLAVIPlayer.TVLAVIPlayer.FramesCount
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 FramesCount : Cardinal read GetFramesCount;
C++ Builder:
__property unsigned int FramesCount = { read=GetFramesCount };
Summary
Total number of frames.
Description
\Returns the total number of frames in the video.
Delphi example:
AValue : Int64; AValue := VLAVIPlayer1.FramesCount;
C++ Builder example:
__int64 AValue = VLAVIPlayer1->FramesCount;
Visual C++(MFC) example:
__int64 AValue = VLAVIPlayer1.FramesCount;
Visual C++/CLI example:
Int64 value = aviPlayer1->FramesCount;
C# example:
Int64 value = aviPlayer1.FramesCount;
VB example:
Dim Value as Int64 = AVIPlayer1.FramesCount