<< xcosPalGenerateAllIcons Fonctions utilitaires Scilab xcosUpdateBlock >>

Scilab Help >> Xcos > Fonctions utilitaires Scilab > xcosPalMove

xcosPalMove

Move a palette from a category to another one.

Syntax

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

History

VersionDescription
5.4.0 Function added in Scilab 5.4.0

Report an issue
<< xcosPalGenerateAllIcons Fonctions utilitaires Scilab xcosUpdateBlock >>