Nothing
as_GridCoordinate <- function(x, ...) {
UseMethod("as_GridCoordinate")
}
#' @export
as_GridCoordinate.default <- function(x, ...) {
abort_unsupported_conversion(x, to = "GridCoordinate")
}
#' @export
as_GridCoordinate.range_spec <- function(x, ..., strict = TRUE) {
grid_range <- as_GridRange(x)
if (identical(names(grid_range), "sheetId")) {
return(new("GridCoordinate", sheetId = grid_range$sheetId))
}
if (strict) {
row_index_diff <- grid_range$endRowIndex - grid_range$startRowIndex
col_index_diff <- grid_range$endColumnIndex - grid_range$startColumnIndex
if (row_index_diff != 1 || col_index_diff != 1) {
gs4_abort(c(
"Range must identify exactly 1 cell:",
x = "Invalid cell range: {.range {x$cell_range}}"
))
}
}
grid_range <- grid_range %>%
discard(is.null) %>%
discard(is.na)
new(
"GridCoordinate",
sheetId = grid_range$sheetId,
rowIndex = grid_range$startRowIndex,
columnIndex = grid_range$startColumnIndex
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.