Class: Google::Apis::SheetsV4::Borders
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::Borders
- 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 borders of the cell.
Instance Attribute Summary collapse
-
#bottom ⇒ Google::Apis::SheetsV4::Border
A border along a cell.
-
#left ⇒ Google::Apis::SheetsV4::Border
A border along a cell.
-
#right ⇒ Google::Apis::SheetsV4::Border
A border along a cell.
-
#top ⇒ Google::Apis::SheetsV4::Border
A border along a cell.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Borders
constructor
A new instance of Borders.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Borders
Returns a new instance of Borders.
2211 2212 2213 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 2211 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bottom ⇒ Google::Apis::SheetsV4::Border
A border along a cell.
Corresponds to the JSON property bottom
2194 2195 2196 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 2194 def bottom @bottom end |
#left ⇒ Google::Apis::SheetsV4::Border
A border along a cell.
Corresponds to the JSON property left
2199 2200 2201 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 2199 def left @left end |
#right ⇒ Google::Apis::SheetsV4::Border
A border along a cell.
Corresponds to the JSON property right
2204 2205 2206 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 2204 def right @right end |
#top ⇒ Google::Apis::SheetsV4::Border
A border along a cell.
Corresponds to the JSON property top
2209 2210 2211 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 2209 def top @top end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2216 2217 2218 2219 2220 2221 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 2216 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 |