The R Project SVN R

Rev

Rev 68948 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 68948 Rev 75560
Line 1... Line 1...
1
% File src/library/utils/man/windows/winDialog.Rd
1
% File src/library/utils/man/windows/winDialog.Rd
2
% Part of the R package, https://www.R-project.org
2
% Part of the R package, https://www.R-project.org
3
% Copyright 1995-2009 R Core Team
3
% Copyright 1995-2018 R Core Team
4
% Distributed under GPL 2 or later
4
% Distributed under GPL 2 or later
5
 
5
 
6
\name{tk_messageBox}
6
\name{tk_messageBox}
7
\alias{tk_messageBox}
7
\alias{tk_messageBox}
8
 
8
 
9
\title{Tk Message Box}
9
\title{Tk Message Box}
10
 
10
 
11
\description{
11
\description{
12
  An implementation of a generic message box using Tk
12
  An implementation of a generic message box using Tk.
13
}
13
}
14
 
14
 
15
\usage{
15
\usage{
16
tk_messageBox(type = c("ok", "okcancel", "yesno", "yesnocancel",
16
tk_messageBox(type = c("ok", "okcancel", "yesno", "yesnocancel",
17
                       "retrycancel", "aburtretrycancel"),
17
                       "retrycancel", "abortretryignore"),
18
              message, caption = "", default = "", ...)
18
              message, caption = "", default = "", ...)
19
}
19
}
20
\arguments{
20
\arguments{
21
  \item{type}{character. The type of dialog box. It will have the
21
  \item{type}{character. The type of dialog box. It will have the
22
    buttons implied by its name.  Can be abbreviated.}
22
    buttons implied by its name.  Can be abbreviated.}