🔍 An RStudio addin slash regex utility belt
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

48 lines
1.9KB

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/shiny_modified_inputs.R
  3. \name{textAreaInputAlt}
  4. \alias{textAreaInputAlt}
  5. \title{Modified Text Area Input}
  6. \usage{
  7. textAreaInputAlt(inputId, label, value = "", width = NULL, height = NULL,
  8. cols = NULL, rows = NULL, placeholder = NULL, resize = NULL,
  9. is_code = TRUE)
  10. }
  11. \arguments{
  12. \item{inputId}{The \code{input} slot that will be used to access the value.}
  13. \item{label}{Display label for the control, or \code{NULL} for no label.}
  14. \item{value}{Initial value.}
  15. \item{width}{The width of the input, e.g. \code{'400px'}, or \code{'100\%'};
  16. see \code{\link{validateCssUnit}}.}
  17. \item{height}{The height of the input, e.g. \code{'400px'}, or
  18. \code{'100\%'}; see \code{\link{validateCssUnit}}.}
  19. \item{cols}{Value of the visible character columns of the input, e.g.
  20. \code{80}. If used with \code{width}, \code{width} will take precedence in
  21. the browser's rendering.}
  22. \item{rows}{The value of the visible character rows of the input, e.g.
  23. \code{6}. If used with \code{height}, \code{height} will take precedence in
  24. the browser's rendering.}
  25. \item{placeholder}{A character string giving the user a hint as to what can
  26. be entered into the control. Internet Explorer 8 and 9 do not support this
  27. option.}
  28. \item{resize}{Which directions the textarea box can be resized. Can be one of
  29. \code{"both"}, \code{"none"}, \code{"vertical"}, and \code{"horizontal"}.
  30. The default, \code{NULL}, will use the client browser's default setting for
  31. resizing textareas.}
  32. \item{is_code}{Should the text input be considered verbatim code input?}
  33. }
  34. \description{
  35. Standard \code{\link[shiny:textAreaInput]{shiny::textAreaInput()}} with additional \code{is_code} parameter, added
  36. code font style for the input text and with \code{autocomplete}, \code{autocorrect},
  37. \code{autocapitalize} and \code{spellcheck} set to \code{off} or \code{false}.
  38. }