Class: Google::Apis::SheetsV4::TextFormatRun
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::TextFormatRun
- 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
A run of a text format. The format of this run continues until the start index of the next run. When updating, all fields must be set.
Instance Attribute Summary collapse
-
#format ⇒ Google::Apis::SheetsV4::TextFormat
The format of a run of text in a cell.
-
#start_index ⇒ Fixnum
The character index where this run starts.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TextFormatRun
constructor
A new instance of TextFormatRun.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TextFormatRun
Returns a new instance of TextFormatRun.
9566 9567 9568 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 9566 def initialize(**args) update!(**args) end |
Instance Attribute Details
#format ⇒ Google::Apis::SheetsV4::TextFormat
The format of a run of text in a cell. Absent values indicate that the field
isn't specified.
Corresponds to the JSON property format
9559 9560 9561 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 9559 def format @format end |
#start_index ⇒ Fixnum
The character index where this run starts.
Corresponds to the JSON property startIndex
9564 9565 9566 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 9564 def start_index @start_index end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9571 9572 9573 9574 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 9571 def update!(**args) @format = args[:format] if args.key?(:format) @start_index = args[:start_index] if args.key?(:start_index) end |