google_api_sheets v0.0.2 GoogleApi.Sheets.V4.Model.TextToColumnsRequest View Source

Splits a column of text into multiple columns, based on a delimiter in each cell.

Attributes

  • delimiter (String.t): The delimiter to use. Used only if delimiterType is CUSTOM. Defaults to: null.
  • delimiterType (String.t): The delimiter type to use. Defaults to: null.

    • Enum - one of [DELIMITER_TYPE_UNSPECIFIED, COMMA, SEMICOLON, PERIOD, SPACE, CUSTOM, AUTODETECT]
  • source (GridRange): The source data range. This must span exactly one column. Defaults to: null.

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %GoogleApi.Sheets.V4.Model.TextToColumnsRequest{
  delimiter: any(),
  delimiterType: any(),
  source: GoogleApi.Sheets.V4.Model.GridRange.t()
}