Configuration Component
Parameters:
Name | Type | Description |
---|---|---|
opt |
object |
Members
(inner) visible :boolean
Configuration
Type:
- boolean
Example
// toggle configuration
const configuration = Module.ProjectManager.getObject("123456789"); // key
configuration.visible = true;
Methods
(inner) remove()
Remove configuration
Example
// remove configuration
const configuration = Module.ProjectManager.getObject("123456789"); // key
configuration.remove();