tooltip(widgetTools)
tooltip()所属R语言包:widgetTools
A tcltk widget to mimic a tooltip
一个的tcltk部件模仿一个提示
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Current tcltk library does not support tooltip unless an extension is included. The function tooltip is implemented as an alternative.
当前tcltk库不支持工具提示,除非包含扩展。作为一种替代的功能说明实施。
用法----------Usage----------
tooltip(text, targetWidget, width = 350)
参数----------Arguments----------
参数:text
text a character string for the content of the tooltip
text为工具提示的内容字符串
参数:targetWidget
targetWidget a tkwin object for the target tcltk widget to which a tool tip will be associated
targetWidget:为目标tcltk部件tkwin的对象,工具提示将相关
参数:width
width an integer for the width (in pixels) of the tooltip
width整数的宽度(像素)的工具提示
Details
详情----------Details----------
Given a target tcltk widget, a tooltip will be associated with the widget. The content of the tooltip will be shown when mouse moves over the widget and disappear when mouse moves out of the widget.
鉴于目标tcltk部件,工具提示将相关的部件。当鼠标移动的部件和消失,当鼠标移动的部件,将显示工具提示的内容。
值----------Value----------
This function returns invisible()
这个函数返回无形的()
作者(S)----------Author(s)----------
Jianhua Zhang
参考文献----------References----------
<h3>See Also</h3>
举例----------Examples----------
## Not run: [#无法运行:]
## These cannot be run by examples() but should be OK when pasted[#这些不能运行的例子(),但粘贴时,应确定]
## into an interactive R session with the widgetTools package loaded[#进入与互动R会话的widgetTools装载包]
base <- tktoplevel()
but <- tkbutton(base, text = "Move Mouse Over Me")
tkpack(but)
tkbind(but, "<Enter>", expression(tooltip("Move mouse off me", but)))
# Destroy toplevel widget[消灭顶层窗口]
# tkdestroy(base)[tkdestroy(碱基)]
## End(Not run)[#结束(不运行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|