Scilab 6.0.0
- Ajuda do Scilab
- Xcos
- Scilab Utilities Functions
- %MODELICA_USER_LIBS
- block_parameter_error
- buildouttb
- getModelicaPath
- importXcosDiagram
- loadScicos
- loadXcosLibs
- scicos_debug
- scicos_getvalue
- scicos_log
- standard_inputs
- standard_origin
- standard_outputs
- var2vec
- vec2var
- xcosAddToolsMenu
- xcosPal
- xcosPalAdd
- xcosPalAddBlock
- xcosPalDelete
- xcosPalExport
- xcosPalGenerateAllIcons
- xcosPalMove
- xcosUpdateBlock
Ajuda do Scilab >> Xcos > Scilab Utilities Functions > xcosPalDelete
xcosPalDelete
Remove an Xcos palette.
Syntax
xcosPalDelete(category);
Arguments
- category:
string array; the category path to delete
Description
Remove an existing palette.
Examples
loadXcosLibs(); // add a palette pal = xcosPal("My sum palette"); pal = xcosPalAddBlock(pal, "SUM_f"); pal = xcosPalAddBlock(pal, "BIGSOM_f"); xcosPalAdd(pal); // remove the palette xcosPalDelete("My sum palette")
See also
- xcosPal — Instantiate a new Xcos palette on Scilab.
- xcosPalAdd — Add a palette to the Scilab/Xcos palette manager. Optional property can be added to set the category of the palette.
History
Versão | Descrição |
5.4.0 | Function added in Scilab 5.4.0 |
Comments
Add a comment:
Please login to comment this page.