Scilab 5.5.2
- Scilabヘルプ
- Xcos
- Scilab Utilities Functions
- %MODELICA_USER_LIBS
- block_parameter_error
- buildouttb
- getModelicaPath
- importXcosDiagram
- loadScicos
- loadXcosLibs
- scicos_debug
- scicos_getvalue
- standard_inputs
- standard_origin
- standard_outputs
- var2vec
- vec2var
- xcosAddToolsMenu
- xcosPal
- xcosPalAdd
- xcosPalAddBlock
- xcosPalDelete
- xcosPalExport
- xcosPalGenerateAllIcons
- xcosPalMove
- xcosUpdateBlock
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
xcosPalMove
Move a palette from a category to another one.
Calling Sequence
xcosPalMove(source, target);
Arguments
- source:
string array; the source category path
- target:
string array; the target category path
Description
Move 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 xcosPalMove("My sum palette", ["Custom made" "Sum"]);
See also
- xcosPal — Instanciate 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.
- xcosPalDelete — Remove an Xcos palette.
History
バージョン | 記述 |
5.4.0 | Function added in Scilab 5.4.0 |
Report an issue | ||
<< xcosPalGenerateAllIcons | Scilab Utilities Functions | xcosUpdateBlock >> |