Class: Google::Apis::SheetsV4::Padding

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 amount of padding around the cell, in pixels. When updating padding, every field must be specified.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Padding

Returns a new instance of Padding.



6999
7000
7001
# File 'lib/google/apis/sheets_v4/classes.rb', line 6999

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

Instance Attribute Details

#bottomFixnum

The bottom padding of the cell. Corresponds to the JSON property bottom

Returns:

  • (Fixnum)


6982
6983
6984
# File 'lib/google/apis/sheets_v4/classes.rb', line 6982

def bottom
  @bottom
end

#leftFixnum

The left padding of the cell. Corresponds to the JSON property left

Returns:

  • (Fixnum)


6987
6988
6989
# File 'lib/google/apis/sheets_v4/classes.rb', line 6987

def left
  @left
end

#rightFixnum

The right padding of the cell. Corresponds to the JSON property right

Returns:

  • (Fixnum)


6992
6993
6994
# File 'lib/google/apis/sheets_v4/classes.rb', line 6992

def right
  @right
end

#topFixnum

The top padding of the cell. Corresponds to the JSON property top

Returns:

  • (Fixnum)


6997
6998
6999
# File 'lib/google/apis/sheets_v4/classes.rb', line 6997

def top
  @top
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7004
7005
7006
7007
7008
7009
# File 'lib/google/apis/sheets_v4/classes.rb', line 7004

def update!(**args)
  @bottom = args[:bottom] if args.key?(:bottom)
  @left = args[:left] if args.key?(:left)
  @right = args[:right] if args.key?(:right)
  @top = args[:top] if args.key?(:top)
end