<< with_module Configuration Debugging >>

Aide de Scilab >> Scilab > Configuration > with_tk

with_tk

Checks if Scilab has been built with TCL/TK (obsolete)

Syntax

r = with_tk()

Arguments

r

a boolean

Description

with_tk() will no longer be available in Scilab 6.1. Please use with_module("tclsci") instead.

Returns %t if Scilab has been built with TCL/TK interface or %f if not.

Examples

if with_tk() == %t then
   disp("Tk is available");
else
   disp("Tk is not available");
end

History

VersionDescription
6.0.2 with_tk() is declared obsolete to be removed from Scilab 6.1. It may be replaced with with_module("tclsci").

Report an issue
<< with_module Configuration Debugging >>