class Google::Apis::SheetsV4::Borders

The borders of the cell.

Attributes

bottom[RW]

A border along a cell. Corresponds to the JSON property `bottom` @return [Google::Apis::SheetsV4::Border]

left[RW]

A border along a cell. Corresponds to the JSON property `left` @return [Google::Apis::SheetsV4::Border]

right[RW]

A border along a cell. Corresponds to the JSON property `right` @return [Google::Apis::SheetsV4::Border]

top[RW]

A border along a cell. Corresponds to the JSON property `top` @return [Google::Apis::SheetsV4::Border]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 2208
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/sheets_v4/classes.rb, line 2213
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