Class: Google::Apis::SheetsV4::Borders

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
more...

Overview

The borders of the cell.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Borders

Returns a new instance of Borders.

[View source]

2208
2209
2210
# File 'generated/google/apis/sheets_v4/classes.rb', line 2208

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

Instance Attribute Details

#bottomGoogle::Apis::SheetsV4::Border

A border along a cell. Corresponds to the JSON property bottom


2191
2192
2193
# File 'generated/google/apis/sheets_v4/classes.rb', line 2191

def bottom
  @bottom
end

#leftGoogle::Apis::SheetsV4::Border

A border along a cell. Corresponds to the JSON property left


2196
2197
2198
# File 'generated/google/apis/sheets_v4/classes.rb', line 2196

def left
  @left
end

#rightGoogle::Apis::SheetsV4::Border

A border along a cell. Corresponds to the JSON property right


2201
2202
2203
# File 'generated/google/apis/sheets_v4/classes.rb', line 2201

def right
  @right
end

#topGoogle::Apis::SheetsV4::Border

A border along a cell. Corresponds to the JSON property top


2206
2207
2208
# File 'generated/google/apis/sheets_v4/classes.rb', line 2206

def top
  @top
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

2213
2214
2215
2216
2217
2218
# File 'generated/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