Property VLASFPlayer.TVLASFPlayer.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: TVLASFPlayer
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:
<c>AValue : Int64;</c> <c>AValue := VLASFLogger1.FramesCount;</c>
C++ Builder example:
<c>__int64 AValue = VLASFLogger1->FramesCount;</c>
Visual C++(MFC) example:
<c>__int64 AValue = VLASFLogger1.FramesCount;</c>
Visual C++/CLI example:
<c>Int64 value = asfPlayer1->FramesCount;</c>
C# example:
<c>Int64 value = asfPlayer1.FramesCount;</c>
VB example:
<c>Dim Value as Int64 = ASFLogger1.FramesCount</c>