Scilab 5.5.0
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
TCL_DeleteInterp
delete TCL interpreter
Calling Sequence
TCL_DeleteInterp(interp) TCL_DeleteInterp()
Arguments
- interp
- character string parameter. Name of the slave tcl interpreter to delete. If not provided, it defaults to the main tcl interpreter created by Scilab. 
Description
This routine allows to delete a TCL slave interpreter or the main scilab TCL interpreter.
More information about Tcl/Tk: http://www.tcl.tk/doc/
Examples
TCL_SetVar("Scilab","OK") TCL_ExistVar("Scilab") TCL_DeleteInterp() TCL_ExistVar("Scilab") TCL_CreateSlave('BisInterp') TCL_ExistInterp('BisInterp') TCL_SetVar("Scilab","OK",'BisInterp') TCL_ExistVar("Scilab",'BisInterp') TCL_DeleteInterp('BisInterp') TCL_ExistInterp('BisInterp')
See Also
- TCL_SetVar — Set a tcl/tk variable value
- TCL_ExistVar — Return %T if a tcl variable exists
- TCL_CreateSlave — Create a TCL slave interpreter
- TCL_ExistInterp — Return %T if a tcl slave interperter exists
| Report an issue | ||
| << TCL_CreateSlave | Tcl/Tk Interface | TCL_EvalFile >> |