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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/sheets_v4/classes.rb,
lib/google/apis/sheets_v4/representations.rb,
lib/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

Constructor Details

#initialize(**args) ⇒ OverlayPosition

Returns a new instance of OverlayPosition.



6960
6961
6962
# File 'lib/google/apis/sheets_v4/classes.rb', line 6960

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



6937
6938
6939
# File 'lib/google/apis/sheets_v4/classes.rb', line 6937

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)


6942
6943
6944
# File 'lib/google/apis/sheets_v4/classes.rb', line 6942

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)


6948
6949
6950
# File 'lib/google/apis/sheets_v4/classes.rb', line 6948

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)


6953
6954
6955
# File 'lib/google/apis/sheets_v4/classes.rb', line 6953

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)


6958
6959
6960
# File 'lib/google/apis/sheets_v4/classes.rb', line 6958

def width_pixels
  @width_pixels
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6965
6966
6967
6968
6969
6970
6971
# File 'lib/google/apis/sheets_v4/classes.rb', line 6965

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