PlayerDuration
Delphi
property PlayerDuration: LargeInteger read GetPlayerDuration write SetPlayerDuration;
C++Builder
__property LargeInteger PlayerDuration = {read=GetPlayerDuration, write=SetPlayerDuration};
C#
public long PlayerDuration { get; set; }
VB.NET
Public Property PlayerDuration As Long
C++/Qt
__int64 GetPlayerDuration ();
void SetPlayerDuration (__int64 Value);
Retrieves the total duration of an opened video clip.
Remarks
Used to retrieve the total duration of a video clip opened by OpenPlayer (expressed in 100-nanosecond units, divide it by 10000000 to convert in seconds).
This property is theoretically a read-only property, however it is possible to assign a value to this property to specify the display time when opening static images in the player (useful mainly when opening static images in the Playlist ).
E.g. if the playlist must display each static image during 4 seconds, set PlayerDuration = 40000000 before invoking PlayList (pl_Play, "").