当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R setWindowTitle 在Windows中设置RGUI的窗口标题或状态栏


R语言 setWindowTitle 位于 utils 包(package)。

说明

设置或获取标题R(IE。RGui)窗口将出现在任务栏中,或设置状态栏(如果使用)。

用法

setWindowTitle(suffix, title = paste(getIdentification(), suffix))

getWindowTitle()

getIdentification()

setStatusBar(text)

参数

suffix

构成标题一部分的字符串

title

构成完整新标题的字符串

text

状态栏中显示的字符串,最多 255 个字符。

细节

setWindowTitlesuffix 附加到普通窗口标识( RGuiR ConsoleRterm )。使用suffix = ""重置标题。

getWindowTitle 获取当前标题。

这设置了MDI模式下的框架标题,控制台的标题RGui --sdi,以及启动它的窗口的标题Rterm。它对嵌入式使用没有影响R.

getIdentification 返回正常窗口标识。

setStatusBar 设置 MDI 框架状态栏中的文本:如果当前未显示,则会选择并显示。

前三个函数返回长度为 1 的字符向量。

setWindowTitle 返回上一个窗口标题(不可见)。

getWindowTitlegetIdentification 分别返回当前窗口标题和正常窗口标识。

注意

这些函数仅在 Windows 上可用,并且仅在使用 Rgui 时才有意义。例如,在 Rterm 中(因此在 ESS 中)标题不可见(但可以设置和获取),而在 RStudio 的版本中,标题始终是 ""

例子

if(.Platform$OS.type == "windows") withAutoprint({
## show the current working directory in the title, saving the old one
oldtitle <- setWindowTitle(getwd())
Sys.sleep(0.5)
## reset the title
setWindowTitle("")
Sys.sleep(0.5)
## restore the original title
setWindowTitle(title = oldtitle)
})

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Set the Window Title or the Statusbar of the RGui in Windows。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。