Sets the visibility state of a palette.
PROCEDURE SetPaletteVisibility(
paletteName : STRING;
vis : BOOLEAN);def vs.SetPaletteVisibility(paletteName, vis):
return None| Name | Type | Description |
|---|---|---|
| paletteName | STRING | Name of the palette |
| vis | BOOLEAN | True if the palette should be visible, false otherwise |
ptr 23-12-2019 - seems to work only on tool palets. Object Info, Attributes, ... don't react to the command.
SetPaletteVisibility('Example', TRUE);import vs
# Sets the visibility state of a palette.
paletteName = 'Example'
vis = True
vs.SetPaletteVisibility(paletteName, vis)VS Functions: GetPaletteVisibility
Availability: from VectorWorks10.0