aPanedGroup(traitr)
aPanedGroup()所属R语言包:traitr
A two panel paned group container.
两面板窗格组容器。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A two panel paned group container.
两面板窗格组容器。
用法----------Usage----------
参数----------Arguments----------
参数:horizontal
If TRUE left to right, if FALSE top to bottom
如果TRUE从左到右,如果FALSE从上到下的
参数:context
ItemGroup or item to get context from. Typically just NULL.
的ItemGroup或项目上下文。通常NULL。
参数:attr
gWidget values passed to constructor
gWidget值传递给构造函数
参数:enabled_when
Method to determine when items in container should be enabled
方法来确定在容器内的项目时,应启用
参数:visible_when
Method to determine when items in container should be visible
方法来确定在容器内的项目时,应该是可见的
参数:...
children items specified by character strings </table>
儿童用品指定的字符串</ TABLE>
值----------Value----------
Returns a proto object. Call obj$show_help() to view its methods and properties.
返回一个proto对象。呼叫obj$show_help()查看其方法和属性。
参见----------See Also----------
Container
Container
实例----------Examples----------
i <- aDialog(items=list(x=numericItem(1), y=stringItem("a")))
lay <- aPanedGroup("x","y") ## just two children,[#只有两个孩子,]
i$make_gui(gui_layout=lay)
## can put other children into a container to make just two children for aPanedGroup instance[#可以把其他的孩子到一个容器中只有两个孩子aPanedGroup例如]
j <- aDialog(items=list(x=numericItem(1), y=stringItem("a"), z=trueFalseItem(TRUE, label="check me")))
lay <- aPanedGroup("x", aContainer("y", "z"))
j$make_gui(gui_layout=lay)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|