writeText(widgetTools)
writeText()所属R语言包:widgetTools
Functions that read from and write to tcltk widgets
函数,读取和写入tcltk部件
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions provide some of the common read and write operations for tcltk widgets
这些功能提供了一些常见的读写操作tcltk部件
用法----------Usage----------
writeText(widget, value, clear = TRUE)
writeList(widget, value, clear = TRUE)
getListValue(which)
getTextValue(which)
getEntryValue(which)
参数----------Arguments----------
参数:widget
widget a tkwin object for the tcltk widget to be read or written to
widgettkwin tcltk部件对象进行读取或写入
参数:value
value the text of numerical value to be written to a tcltk widget
value数值的文本被写入到tcltk部件
参数:clear
clear a boolean to indicate whether a value will append to the existing one (FALSE)
clear一个布尔值,指示值是否会追加到现有的(假)
参数:which
which a tkwin object for the tcltk widget whose value will be retrieved
whichtcltk部件,其价值tkwin对象将检索
Details
详情----------Details----------
writeText writes to a given tcltk text box widget.
writeText写一个给定的tcltk的文本框构件。
writeList writes to a given tcltk list or entry box widget.
writeList写一个给定的tcltk列表或输入框部件。
getListValue retrieves the selected value in a tcltk list widget.
getListValue检索在tcltk列表部件的选定值。
getTextValue retrieves the value of a text box.
getTextValue检索文本框的值。
getEntryValue retrieves the value of an entry box.
getEntryValue检索输入框的值。
值----------Value----------
getListValue returns the selected value in a tcltk list widget.
getListValue返回tcltk列表部件在选定的值。
getTextValue returns the value of a text box.
getTextValue返回一个文本框的值。
getEntryValue returns the value of an entry box.
getEntryValue返回一个输入框的值。
作者(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装载包]
# Create the widgets[创建的部件]
base <- tktoplevel()
list <- tklistbox(base, width = 20, height = 5)
entry <- tkentry(base)
text <- tktext(base, width = 20, height = 5)
tkpack(list, entry, text)
# Write and read from the widgets[写入和读取的部件]
writeList(list, c("Option1", "Option2", "Option3"))
writeList(entry, "An Entry box")
writeText(text, "A text box")
# Will be NULL if not selected[如果不选择将是NULL]
getListValue(list)
getTextValue(text)
getEntryValue(entry)
# Destroy toplevel widget[消灭顶层窗口]
# tkdestroy(base)[tkdestroy(碱基)]
## End(Not run)[#结束(不运行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|