_Framework.DisplayDataSource (runtime)¶
Live 11 — Live Object Model & framework reference (descriptions and signatures).
Functions¶
adjust_string(original, length)¶
adjust_string_crop(original, length)¶
Classes¶
class DisplayDataSource¶
Properties¶
separator
Methods¶
__init__(self, display_string='', separator=None, adjust_string_fn=<function adjust_string at 0x162fc3510>, *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 partial¶
partial(func, args, *keywords) - new function with partial application of the given arguments and keywords.
Methods¶
__call__(self, /, *args, **kwargs)¶
Call self as a function.
__init__(self, /, *args, **kwargs)¶
Initialize self. See help(type(self)) for accurate signature.
Attributes¶
args=<member 'args' of 'functools.partial' objects>- tuple of arguments to future partial callsfunc=<member 'func' of 'functools.partial' objects>- function object to use in future partial callskeywords=<member 'keywords' of 'functools.partial' objects>- dictionary of keyword arguments to future partial calls