Class: Google::Apis::SheetsV4::EmbeddedObjectPosition

Inherits:
Object
  • Object
show all
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

The position of an embedded object such as a chart.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ EmbeddedObjectPosition

Returns a new instance of EmbeddedObjectPosition



4592
4593
4594
# File 'generated/google/apis/sheets_v4/classes.rb', line 4592

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#new_sheetBoolean Also known as: new_sheet?

If true, the embedded object is put on a new sheet whose ID is chosen for you. Used only when writing. Corresponds to the JSON property newSheet

Returns:

  • (Boolean)


4578
4579
4580
# File 'generated/google/apis/sheets_v4/classes.rb', line 4578

def new_sheet
  @new_sheet
end

#overlay_positionGoogle::Apis::SheetsV4::OverlayPosition

The location an object is overlaid on top of a grid. Corresponds to the JSON property overlayPosition



4584
4585
4586
# File 'generated/google/apis/sheets_v4/classes.rb', line 4584

def overlay_position
  @overlay_position
end

#sheet_idFixnum

The sheet this is on. Set only if the embedded object is on its own sheet. Must be non-negative. Corresponds to the JSON property sheetId

Returns:

  • (Fixnum)


4590
4591
4592
# File 'generated/google/apis/sheets_v4/classes.rb', line 4590

def sheet_id
  @sheet_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4597
4598
4599
4600
4601
# File 'generated/google/apis/sheets_v4/classes.rb', line 4597

def update!(**args)
  @new_sheet = args[:new_sheet] if args.key?(:new_sheet)
  @overlay_position = args[:overlay_position] if args.key?(:overlay_position)
  @sheet_id = args[:sheet_id] if args.key?(:sheet_id)
end