Property ALVorbisDecompressor.TALVorbisDecompressor.CurrentTime
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: TALVorbisDecompressor
Contents |
Syntax
Delphi:
property CurrentTime : Int64 read VCGetCurrentTime;
C++ Builder:
__property __int64 CurrentTime = { read=VCGetCurrentTime };
Summary
Current audio time compressed.
Description
Use this property to get or set the current audio time
compressed.
Delphi example:
AValue : Int64; AValue := ALVorbisDecompressor1.CurrentTime;
C++ Builder example:
__int64 AValue = ALVorbisDecompressor1->CurrentTime;
Visual C++(MFC/Win32) example:
__int64 AValue = ALVorbisDecompressor1.CurrentTime;
C# example:
Int64 value = vorbisDecompressor1.CurrentTime;