Property ALDelayLine.TALDelayLine.DelayValue
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: TALDelayLine
Contents |
Syntax
Delphi:
property DelayValue : TSLDelayValue read FDelayValue write SetDelayValue;
C++ Builder:
__property TSLDelayValue * DelayValue = { read=FDelayValue, write=SetDelayValue };
Summary
Delay of the audio in samples or time.
Description
Use this property to specify the delay of the audio in
samples or time.
Delphi example:
ALDelayLine1.DelayValue.Value := 200;
C++ Builder example:
ALDelayLine1->DelayValue->Value = 200;
Visual C++(MFC/Win32) example:
ALDelayLine1.DelayValue.Value = 200;
Visual C++/CLI example:
delayLine1->DelayValue->Value = 200;
C# example:
delayLine1.DelayValue.Value = 200;
VB example:
DelayLine1.DelayValue.Value = 200