Property ALWaveLogger.TALWaveLogger.CurrentSample
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: TALWaveLogger
Contents |
Syntax
Delphi:
property CurrentSample : Int64 read Get_CurrentSample write Set_CurrentSample;
C++ Builder:
__property __int64 CurrentSample = { read=Get_CurrentSample, write=Set_CurrentSample };
Summary
Current number audio samples recorded.
Description
\Returns the current number audio sample being logged.
Use this property to get the current audio sample being recorded.
Delphi example:
AValue : Int64; AValue := ALWaveLogger1.CurrentSample;
C++ Builder example:
__int64 AValue = ALWaveLogger1->CurrentSample;
Visual C++(MFC/Win32) example:
__int64 AValue = ALWaveLogger1.CurrentSample;
C# example:
Int64 value = waveLogger1.CurrentSample;