C# Class GAudio.GATFilterParam

Helper class to easily control filter parameters. Reflection only occurs in the constructor: overhead when getting / setting the parameter is minimal.
Afficher le fichier Open project: gregzo/G-Audio Class Usage Examples

Méthodes publiques

Méthode Description
GATFilterParam ( AGATMonoFilter filter, string paramName ) : System

Initialize a filter parameter handler for the given filter. paramName should be the exact name of the property to tweak.

GATFilterParam ( int trackNb, int slotNb, string paramName, GATPlayer player = null ) : System

Initialize a filter parameter handler for a track filter. paramName should be the exact name of the property to tweak. If player is null, the default player is used instead.

GATFilterParam ( int slotNb, string paramName, GATPlayer player = null ) : System

Initialize a filter parameter handler for a player filter. If player is null, the default player is used instead. paramName should be the exact name of the property to tweak.

Method Details

GATFilterParam() public méthode

Initialize a filter parameter handler for the given filter. paramName should be the exact name of the property to tweak.
public GATFilterParam ( AGATMonoFilter filter, string paramName ) : System
filter AGATMonoFilter
paramName string
Résultat System

GATFilterParam() public méthode

Initialize a filter parameter handler for a track filter. paramName should be the exact name of the property to tweak. If player is null, the default player is used instead.
public GATFilterParam ( int trackNb, int slotNb, string paramName, GATPlayer player = null ) : System
trackNb int
slotNb int
paramName string
player GATPlayer
Résultat System

GATFilterParam() public méthode

Initialize a filter parameter handler for a player filter. If player is null, the default player is used instead. paramName should be the exact name of the property to tweak.
public GATFilterParam ( int slotNb, string paramName, GATPlayer player = null ) : System
slotNb int
paramName string
player GATPlayer
Résultat System