The R Project SVN R

Rev

Rev 61433 | Rev 68948 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 61433 Rev 62416
Line 1... Line 1...
1
% File src/library/tcltk/man/TclInterface.Rd
1
% File src/library/tcltk/man/TclInterface.Rd
2
% Part of the R package, http://www.R-project.org
2
% Part of the R package, http://www.R-project.org
3
% Copyright 1995-2007 R Core Team
3
% Copyright 1995-2013 R Core Team
4
% Distributed under GPL 2 or later
4
% Distributed under GPL 2 or later
5
 
5
 
6
\name{TclInterface}
6
\name{TclInterface}
7
\title{Low-level Tcl/Tk Interface}
7
\title{Low-level Tcl/Tk Interface}
8
%
8
%
Line 247... Line 247...
247
  the \emph{name} of the corresponding Tcl variable and not the value.
247
  the \emph{name} of the corresponding Tcl variable and not the value.
248
 
248
 
249
  Tcl packages can be loaded with \code{tclRequire}; it may be necessary
249
  Tcl packages can be loaded with \code{tclRequire}; it may be necessary
250
  to add the directory where they are found to the Tcl search path with
250
  to add the directory where they are found to the Tcl search path with
251
  \code{addTclPath}.  The return value is a class \code{"tclObj"} object
251
  \code{addTclPath}.  The return value is a class \code{"tclObj"} object
252
  if it succeeds, or \code{FALSE} if it fails (when a warning is issued).
252
  if it succeeds, or \code{FALSE} if it fails (when a warning is
-
 
253
  issued).  To see the current search path as an \R character vector, use
-
 
254
\preformatted{strsplit(tclvalue('auto_path'), " ")[[1]]}.
253
}
255
}
-
 
256
\note{
254
\note{ Strings containing unbalanced braces are currently not handled
257
  Strings containing unbalanced braces are currently not handled
255
  well in many circumstances.
258
  well in many circumstances.
256
}
259
}
257
\seealso{
260
\seealso{
258
  \code{\link{TkWidgets}},
261
  \code{\link{TkWidgets}},
259
  \code{\link{TkCommands}},
262
  \code{\link{TkCommands}},