Live.ChainMixerDevice (runtime)¶
Live 11 — Live Object Model & framework reference (descriptions and signatures).
Classes¶
class ChainMixerDevice(LomObject)¶
This class represents a Chain's Mixer Device in Live, which gives you access to the Volume, Panning, and Send properties of a Chain.
Properties¶
_live_ptrcanonical_parent- Get the canonical parent of the mixer device.chain_activator- Const access to the Chain's Activator Device Parameter.panning- Const access to the Chain's Panning Device Parameter.sends- Const access to the Chain's list of Send Amount Device Parameters.volume- Const access to the Chain's Volume Device Parameter.
Methods¶
__init__(...)¶
Raises an exception This class cannot be instantiated from Python
add_sends_listener(...)¶
add_sends_listener( (ChainMixerDevice)arg1, (object)arg2) -> None : Add a listener function or method, which will be called as soon as the property "sends" has changed.
C++ signature :
void add_sends_listener(TPyHandle<ABranchMixerDevice>,boost::python::api::object)
remove_sends_listener(...)¶
remove_sends_listener( (ChainMixerDevice)arg1, (object)arg2) -> None : Remove a previously set listener function or method from property "sends".
C++ signature :
void remove_sends_listener(TPyHandle<ABranchMixerDevice>,boost::python::api::object)
sends_has_listener(...)¶
sends_has_listener( (ChainMixerDevice)arg1, (object)arg2) -> bool : Returns true, if the given listener function or method is connected to the property "sends".
C++ signature :
bool sends_has_listener(TPyHandle<ABranchMixerDevice>,boost::python::api::object)