Class: Google::Apis::SheetsV4::DimensionGroup
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::DimensionGroup
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/google/apis/sheets_v4/representations.rb
Overview
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.
Instance Attribute Summary collapse
-
#collapsed ⇒ Boolean
(also: #collapsed?)
This field is true if this group is collapsed.
-
#depth ⇒ Fixnum
The depth of the group, representing how many groups have a range that wholly contains the range of this group.
-
#range ⇒ Google::Apis::SheetsV4::DimensionRange
A range along a single dimension on a sheet.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DimensionGroup
constructor
A new instance of DimensionGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DimensionGroup
Returns a new instance of DimensionGroup.
4647 4648 4649 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4647 def initialize(**args) update!(**args) end |
Instance Attribute Details
#collapsed ⇒ Boolean Also known as: collapsed?
This field is true if this group is collapsed. A collapsed group remains
collapsed if an overlapping group at a shallower depth is expanded.
A true value 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 are set to hidden if this field is true, or set to visible if
this field is false.
Corresponds to the JSON property collapsed
4629 4630 4631 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4629 def collapsed @collapsed end |
#depth ⇒ Fixnum
The depth of the group, representing how many groups have a range that
wholly contains the range of this group.
Corresponds to the JSON property depth
4636 4637 4638 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4636 def depth @depth end |
#range ⇒ Google::Apis::SheetsV4::DimensionRange
A range along a single dimension on a sheet.
All indexes are zero-based.
Indexes are half open: the start index is inclusive
and the end index is exclusive.
Missing indexes indicate the range is unbounded on that side.
Corresponds to the JSON property range
4645 4646 4647 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4645 def range @range end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4652 4653 4654 4655 4656 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4652 def update!(**args) @collapsed = args[:collapsed] if args.key?(:collapsed) @depth = args[:depth] if args.key?(:depth) @range = args[:range] if args.key?(:range) end |