Property VLDSVideoPlayer.TVLDSVideoPlayer.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: TVLDSVideoPlayer
Contents |
Syntax
Delphi:
property FramesCount : Int64 read GetFramesCount;
C++ Builder:
__property __int64 FramesCount = { read=GetFramesCount };
Summary
Total number of frames.
Description
\Returns the total number of frames in the video.
Delphi example:
AValue : Int64; AValue := VLDSVideoPlayer1.FramesCount;
C++ Builder example:
__int64 AValue = VLDSVideoPlayer1->FramesCount;
Visual C++(MFC) example:
__int64 AValue = VLDSVideoPlayer1.FramesCount;
Visual C++/CLI example:
Int64 value = dsVideoPlayer1->FramesCount;
C# example:
Int64 value = dsVideoPlayer1.FramesCount;
VB example:
Dim Value as Int64 = DSVideoPlayer1.FramesCount