Property ALASFPlayer.TALASFPlayer.SamplesCount
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: TALASFPlayer
Contents |
Syntax
Delphi:
property SamplesCount : Int64 read GetSamplesCount;
C++ Builder:
__property __int64 SamplesCount = { read=GetSamplesCount };
Summary
Returns the total number of audio samples in the file.
Description
Use this property to obtain the total number of audio samples
in the file.
Delphi example:
<c>AValue : Int64;</c> <c>AValue := ALASFPlayer1.SamplesCount;</c>
C++ Builder example:
<c>__int64 AValue = ALASFPlayer1->SamplesCount;</c>
Visual C++(MFC/Win32) example:
<c>__int64 AValue = ALASFPlayer1.SamplesCount;</c>
Visual C++/CLI example:
<c>Int64 value = asfPlayer1->SamplesCount;</c>
C# example:
<c>Int64 value = asfPlayer1.SamplesCount;</c>
VB example:
<c>Dim Value as Int64 = AsfLogger1.SamplesCount</c>