Skip to contents

Create a new form

Usage

create_form(title = NULL, document_title = "new_form", description = "")

Arguments

title

The title for the new form. Required as a string.

document_title

The title for the form file that will be stored in Google Drive

description

The description for the new form as a string.

Examples

if (FALSE) {
#'
# Make the form
form_info <- create_form(
  title = "A great quiz",
  description = "This quiz is tricky"
)
}