cadencii.VSTiDriverBase.setParameter C# (CSharp) Method

setParameter() public method

public setParameter ( int index, float value ) : void
index int
value float
return void
        public virtual void setParameter( int index, float value )
        {
            try {
                aEffect.SetParameter( index, value );
            } catch ( Exception ex ) {
                serr.println( "vstidrv#setParameter; ex=" + ex );
            }
        }