Class: Google::Apis::SheetsV4::AutoResizeDimensionsRequest
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::AutoResizeDimensionsRequest
- 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
Automatically resizes one or more dimensions based on the contents of the cells in that dimension.
Instance Attribute Summary collapse
-
#dimensions ⇒ Google::Apis::SheetsV4::DimensionRange
A range along a single dimension on a sheet.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AutoResizeDimensionsRequest
constructor
A new instance of AutoResizeDimensionsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AutoResizeDimensionsRequest
Returns a new instance of AutoResizeDimensionsRequest
507 508 509 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 507 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dimensions ⇒ 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 dimensions
505 506 507 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 505 def dimensions @dimensions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
512 513 514 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 512 def update!(**args) @dimensions = args[:dimensions] if args.key?(:dimensions) end |