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

A group over an interval of rows or columns on a sheet, which can contain or be contained within other groups. A group can be collapsed or expanded as a unit on the sheet.

Attributes

  • collapsed (boolean()): True if this group is collapsed. A collapsed group will remain collapsed if an overlapping group at a shallower depth is expanded. collapsed == true does not imply that all dimensions within the group are hidden, since a dimension's visibility can change independently from this group property. However, when this property is updated, all dimensions within it will be set to hidden if collapsed == true, or set to visible if collapsed == false. Defaults to: null.
  • depth (integer()): The depth of the group, representing how many groups have a range that wholly contains the range of this group. Defaults to: null.
  • range (DimensionRange): The range over which this group exists. 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.DimensionGroup{
  collapsed: any(),
  depth: any(),
  range: GoogleApi.Sheets.V4.Model.DimensionRange.t()
}