Property VLDSVideoPlayer.TVLDSVideoPlayer.DurationTime
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 DurationTime : Int64 read GetDurationTime;
C++ Builder:
__property __int64 DurationTime = { read=GetDurationTime };
Summary
The total time of the opened file.
Description
\Returns the duration time of the video in 100 nano second
units.
Delphi example:
AValue : Int64; AValue := VLDSVideoPlayer1.DurationTime;
C++ Builder example:
__int64 AValue = VLDSVideoPlayer1->DurationTime;
Visual C++(MFC) example:
__int64 AValue = VLDSVideoPlayer1.DurationTime;
Visual C++/CLI example:
Int64 value = dsVideoPlayer1->DurationTime;
C# example:
Int64 value = dsVideoPlayer1.DurationTime;
VB example:
Dim Value as Int64 = DSVideoPlayer1.DurationTime