BASS.NET API for the Un4seen BASS Audio Library

VST_AEFFECT_SetParameter Delegate

BASS.NET API for the Un4seen BASS Audio Library
Set new value of automatable parameter.

Namespace:  Un4seen.Bass.AddOn.Vst
Assembly:  Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax

public delegate int VST_AEFFECT_SetParameter(
	IntPtr effect,
	int index,
	float parameter
)

Parameters

effect
Type: SystemIntPtr
The aeffect as retrieved via BASS_VST_GetInfo(Int32, BASS_VST_INFO).
index
Type: SystemInt32
The parameter index.
parameter
Type: SystemSingle
The new parameter value (a float value between 0.0 and 1.0 inclusive).

Return Value

Type: Int32
See Steinberg VST SDK documentaion for more information.
Remarks

This delegate is only used internally within the BASS_VST_AEFFECT class and can not be used directly! It is also only supported in the .Net Framework version 2.0 or above!

See Also

Reference