_Framework.ChannelStripComponent (runtime)¶
Live 12 — Live Object Model & framework reference (descriptions and signatures).
Functions¶
nop(*a, **k)¶
release_control(control)¶
reset_button(button)¶
Classes¶
class ChannelStripComponent(ControlSurfaceComponent)¶
class ControlSurfaceComponent(ControlManager, Subject)¶
class DisplayDataSource¶
Properties¶
separator
Methods¶
__init__(self, display_string='', separator=None, adjust_string_fn=<function adjust_string at 0x129df7420>, *a, **k)¶
Initialize self. See help(type(self)) for accurate signature.
_adjust_string_fn(original, length)¶
partial(func, args, *keywords) - new function with partial application of the given arguments and keywords.
_get_separator(self)¶
_set_separator(self, separator)¶
adjust_string(self, width)¶
clear(self)¶
display_string(self)¶
set_display_string(self, new_string)¶
set_update_callback(self, update_callback)¶
update(self)¶
Attributes¶
_separator=''- str(object='') -> str
class chain¶
chain(*iterables) --> chain object
Return a chain object whose .next() method returns elements from the first iterable until it is exhausted, then elements from the next iterable, until all of the iterables are exhausted.
Methods¶
__init__(self, /, *args, **kwargs)¶
Initialize self. See help(type(self)) for accurate signature.
from_iterable(iterable, /)¶
Alternative chain() constructor taking a single iterable argument that evaluates lazily.