26 lines
606 B
R
26 lines
606 B
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/htmlBoxManipulation.R
|
|
\name{htmlRemoveBoxTitle}
|
|
\alias{htmlRemoveBoxTitle}
|
|
\title{Removes title from box element (leaving an un-titled box with header if
|
|
required)}
|
|
\usage{
|
|
htmlRemoveBoxTitle(box, removeHeader = FALSE)
|
|
}
|
|
\arguments{
|
|
\item{box}{The box to remove the title from}
|
|
|
|
\item{removeHeader}{Remove the header as well}
|
|
}
|
|
\value{
|
|
The modified box
|
|
}
|
|
\description{
|
|
Removes title from box element (leaving an un-titled box with header if
|
|
required)
|
|
}
|
|
\examples{
|
|
x <- shinydashboard::box(title = "TBR")
|
|
htmlRemoveBoxTitle(x)
|
|
}
|