Setlist
Setlist
¤
Bases: ItemBase
Source code in helixapi\setlist.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
|
active
property
writable
¤
Get the active state of the setlist.
Returns:
Name | Type | Description |
---|---|---|
bool |
True if the setlist is active, False otherwise. |
index = index
instance-attribute
¤
name: str
property
writable
¤
Get the name of the setlist.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
The name of the setlist. |
presets
property
¤
Get the presets for this setlist.
Returns:
Name | Type | Description |
---|---|---|
Presets |
The presets for this setlist. |
export_setlist(file_path=None)
¤
Export a setlist to a file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
file_path |
str
|
The path to the file to export. Defaults to None. |
None
|
Raises:
Type | Description |
---|---|
Exception
|
If the file path is not specified or the file type is incorrect. |
Source code in helixapi\setlist.py
59 60 61 62 63 64 65 66 67 68 69 |
|
import_setlist(file_path=None)
¤
Import a setlist from a file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
file_path |
str
|
The path to the file to import. Defaults to None. |
None
|
Raises:
Type | Description |
---|---|
Exception
|
If the file path is not specified or the file type is incorrect. |
Source code in helixapi\setlist.py
47 48 49 50 51 52 53 54 55 56 57 |
|
reset_setlist()
¤
Reset the setlist to its default state.
Source code in helixapi\setlist.py
71 72 73 74 75 76 |
|