1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/dialogs.R
\name{showDialog}
\alias{showDialog}
\title{Show Dialog Box}
\usage{
showDialog(title, message, url = "")
}
\arguments{
\item{title}{The title to display in the dialog box.}
\item{message}{A character vector with the contents to display in the main
dialog area. Contents can contain the following HTML tags: "p", "em",
"strong", "b" and "i".}
\item{url}{An optional url to display under the \code{message}.}
}
\description{
Shows a dialog box with a given title and contents.
}
\details{
\preformatted{ showDialog("A dialog", "Showing <b>bold</b> text in the
message.") }
}
\note{
The \code{showDialog} function was added in version 1.1.67 of RStudio.
}
|