Class: Google::Apis::SheetsV4::OverlayPosition

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 location an object is overlaid on top of a grid.

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) ⇒ OverlayPosition

Returns a new instance of OverlayPosition.



4696
4697
4698
# File 'generated/google/apis/sheets_v4/classes.rb', line 4696

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

Instance Attribute Details

#anchor_cellGoogle::Apis::SheetsV4::GridCoordinate

A coordinate in a sheet. All indexes are zero-based. Corresponds to the JSON property anchorCell



4677
4678
4679
# File 'generated/google/apis/sheets_v4/classes.rb', line 4677

def anchor_cell
  @anchor_cell
end

#height_pixelsFixnum

The height of the object, in pixels. Defaults to 371. Corresponds to the JSON property heightPixels

Returns:

  • (Fixnum)


4688
4689
4690
# File 'generated/google/apis/sheets_v4/classes.rb', line 4688

def height_pixels
  @height_pixels
end

#offset_x_pixelsFixnum

The horizontal offset, in pixels, that the object is offset from the anchor cell. Corresponds to the JSON property offsetXPixels

Returns:

  • (Fixnum)


4683
4684
4685
# File 'generated/google/apis/sheets_v4/classes.rb', line 4683

def offset_x_pixels
  @offset_x_pixels
end

#offset_y_pixelsFixnum

The vertical offset, in pixels, that the object is offset from the anchor cell. Corresponds to the JSON property offsetYPixels

Returns:

  • (Fixnum)


4694
4695
4696
# File 'generated/google/apis/sheets_v4/classes.rb', line 4694

def offset_y_pixels
  @offset_y_pixels
end

#width_pixelsFixnum

The width of the object, in pixels. Defaults to 600. Corresponds to the JSON property widthPixels

Returns:

  • (Fixnum)


4671
4672
4673
# File 'generated/google/apis/sheets_v4/classes.rb', line 4671

def width_pixels
  @width_pixels
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4701
4702
4703
4704
4705
4706
4707
# File 'generated/google/apis/sheets_v4/classes.rb', line 4701

def update!(**args)
  @width_pixels = args[:width_pixels] if args.key?(:width_pixels)
  @anchor_cell = args[:anchor_cell] if args.key?(:anchor_cell)
  @offset_x_pixels = args[:offset_x_pixels] if args.key?(:offset_x_pixels)
  @height_pixels = args[:height_pixels] if args.key?(:height_pixels)
  @offset_y_pixels = args[:offset_y_pixels] if args.key?(:offset_y_pixels)
end