Show / Hide Table of Contents

Struct BassVstParamInfo

Common information structure about an editable parameter to a VST plugin parameter to be used with GetParamInfo(Int32, Int32, out BassVstParamInfo).

Namespace: System.Dynamic.ExpandoObject
Assembly: ManagedBass.Vst.dll
Syntax
public struct BassVstParamInfo

Properties

DefaultValue

The default value (in the range of 0.0 and 1.0).

Declaration
public float DefaultValue { get; }
Property Value
Single

Display

The current value in a readable format (empty strings returned if a plugin does not provide these information).

Examples: 0.5, -3, PLATE

Declaration
public string Display { get; }
Property Value
String

Name

Name of the parameter (empty strings returned if a plugin does not provide these information).

Examples: Time, Gain, RoomType

Declaration
public string Name { get; }
Property Value
String

Unit

Unit of the parameter.

Examples: sec, dB, type

Declaration
public string Unit { get; }
Property Value
String

Back to top Copyright © 2017 Mathew Sachin
Generated by DocFx