class documentation
class PanelConfig(OperatorConfig): (source)
Constructor: PanelConfig(name, label, help_markdown, beta, ...)
Configuration for a panel.
Parameters | |
name | the name of the panel |
label | the display name for the panel |
icon | the icon to show in the panel's tab |
light | the icon to show in the panel's tab when the App is in light mode |
dark | the icon to show in the panel's tab when the App is in dark mode |
allow | whether to allow multiple instances of the panel to be opened |
surfaces | the surfaces on which the panel can be displayed |
help | a markdown string to display in the panel's help tooltip |
category | the category id of the panel |
priority | the priority of the panel for sorting in the UI |
Method | __init__ |
Undocumented |
Method | to |
Undocumented |
Instance Variable | allow |
Undocumented |
Instance Variable | beta |
Undocumented |
Instance Variable | category |
Undocumented |
Instance Variable | dark |
Undocumented |
Instance Variable | help |
Undocumented |
Instance Variable | icon |
Undocumented |
Instance Variable | is |
Undocumented |
Instance Variable | kwargs |
Undocumented |
Instance Variable | label |
Undocumented |
Instance Variable | light |
Undocumented |
Instance Variable | name |
Undocumented |
Instance Variable | on |
Undocumented |
Instance Variable | priority |
Undocumented |
Instance Variable | surfaces |
Undocumented |
Instance Variable | unlisted |
Undocumented |
Inherited from OperatorConfig
:
Instance Variable | allow |
Undocumented |
Instance Variable | allow |
Undocumented |
Instance Variable | default |
Undocumented |
Instance Variable | delegation |
Undocumented |
Instance Variable | description |
Undocumented |
Instance Variable | disable |
Undocumented |
Instance Variable | dynamic |
Undocumented |
Instance Variable | execute |
Undocumented |
Instance Variable | on |
Undocumented |
Instance Variable | resolve |
Undocumented |
def __init__(self, name, label, help_markdown=None, beta=False, is_new=False, category=None, icon=None, light_icon=None, dark_icon=None, allow_multiple=False, surfaces:
PANEL_SURFACE
= 'grid', priority=None, **kwargs):
(source)
¶
Undocumented