cadencii.VSTiDriverBase.getParameter C# (CSharp) Method

getParameter() public method

public getParameter ( int index ) : float
index int
return float
        public virtual float getParameter( int index )
        {
            float ret = 0.0f;
            try {
                ret = aEffect.GetParameter( index );
            } catch ( Exception ex ) {
                serr.println( "vstidrv#getParameter; ex=" + ex );
            }
            return ret;
        }