Get current echo effects.
Public Function GetEchoParam(ByRef EchoEffectArray() As TEchoEffect) As Integer
Parameters |
Description |
ByRef EchoEffectArray() As TEchoEffect |
Reference to array of TEchoEffect structures receiving echo effects. Caution: This array will be resized to receive all echo effects. |
Number of echo effects in EchoEffectArray array.
Function will resize EchoEffectArray array to receive all echo effects.
Note: By default, new created interface has programmed one simple echo effect, 1000 ms delay, 70 % original volume + 30 % echo volume.
Dim test(1) As libZPlay.TEchoEffect player.GetEchoParam(test) Dim i As Integer For i = 0 To test.Length - 1 Step 1 MsgBox(CStr(test(i).nLeftEchoVolume)) Next
Copyright (c) 2010. Zoran Cindori - All rights reserved.
Web: http://libzplay.sourceforge.net/ Email: zcindori@inet.hr |