BASS.NET API for the Un4seen BASS Audio Library

VST_AEFFECT_GetParameter Delegate

BASS.NET API for the Un4seen BASS Audio Library
Gets a value of automatable parameter.

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

public delegate float VST_AEFFECT_GetParameter(
	IntPtr effect,
	int index
)

Parameters

effect
Type: SystemIntPtr
The aeffect as retrieved via BASS_VST_GetInfo(Int32, BASS_VST_INFO).
index
Type: SystemInt32
The parameter index.

Return Value

Type: Single
The parameter value (a float value between 0.0 and 1.0 inclusive).
Remarks

Returns the value of parameter index (a float value between 0.0 and 1.0 inclusive).

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