R語言
setWindowTitle
位於 utils
包(package)。 說明
設置或獲取標題R(IE。RGui
)窗口將出現在任務欄中,或設置狀態欄(如果使用)。
用法
setWindowTitle(suffix, title = paste(getIdentification(), suffix))
getWindowTitle()
getIdentification()
setStatusBar(text)
參數
suffix |
構成標題一部分的字符串 |
title |
構成完整新標題的字符串 |
text |
狀態欄中顯示的字符串,最多 255 個字符。 |
細節
setWindowTitle
將 suffix
附加到普通窗口標識( RGui
、 R Console
或 Rterm
)。使用suffix = ""
重置標題。
getWindowTitle
獲取當前標題。
這設置了MDI模式下的框架標題,控製台的標題RGui --sdi
,以及啟動它的窗口的標題Rterm
。它對嵌入式使用沒有影響R.
getIdentification
返回正常窗口標識。
setStatusBar
設置 MDI 框架狀態欄中的文本:如果當前未顯示,則會選擇並顯示。
值
前三個函數返回長度為 1 的字符向量。
setWindowTitle
返回上一個窗口標題(不可見)。
getWindowTitle
和 getIdentification
分別返回當前窗口標題和正常窗口標識。
注意
這些函數僅在 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 setRepositories 選擇包存儲庫
- R select.list 從列表中選擇項目
- R sessionInfo 收集有關當前 R 會話的信息
- R str 緊湊地顯示任意 R 對象的結構
- R sourceutils 源參考實用程序
- R stack 從數據幀或列表中堆疊或取消堆疊向量
- R shortPathName 在 Windows 上以簡短形式表達文件路徑
- R summaryRprof 總結 R 采樣分析器的輸出
- R savehistory 加載、保存或顯示命令曆史記錄
- R strcapture 將字符串標記捕獲到 data.frame 中
- R COMPILE 編譯用於 R 的文件
- R readRegistry 讀取 Windows 注冊表配置單元
- R browseVignettes 在 HTML 瀏覽器中列出暈影
- R hasName 檢查姓名
- R nsl 按主機名查找 IP 地址
- R edit 調用文本編輯器
- R create.post 準備電子郵件和帖子的輔助函數
- R hsearch-utils 幫助搜索實用程序
- R download.packages 從類似 CRAN 的存儲庫下載軟件包
- R DLL.version MS Windows 上的 DLL 版本信息
- R ls.str 列表對象及其結構
- R Rscript R 前端腳本
- R bug.report 發送錯誤報告
- R PkgUtils 用於構建和檢查附加包的實用程序
- R cite 引用參考書目條目
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Set the Window Title or the Statusbar of the RGui in Windows。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。