getLightTW {tkWidgets} | R Documentation |
Given a text string and coordinations, this function creates a light weight tcltk widget with showing the text string passed.
getLightTW(x, y, text)
x |
x an interger for the horizontal position for the
widget to appear |
y |
y an integer for the vertical position for the widget
to appear |
text |
text a character string to be show in the widget |
When the function is invoked, a box containing the text will appear at the position specified by x, and y. Click the widget makes it disappear.
This function does not return any value
This function is part of the Bioconductor project at Dana-Farber Cancer Institute to provide Bioinformatics functionalities through R
Jianhua Zhang
if(interactive()){ getLightTW(200, 200, "Click Me!") }