Class: Google::Apis::SheetsV4::TextFormatRun

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

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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TextFormatRun

Returns a new instance of TextFormatRun.



1245
1246
1247
# File 'generated/google/apis/sheets_v4/classes.rb', line 1245

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

Instance Attribute Details

#formatGoogle::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



1243
1244
1245
# File 'generated/google/apis/sheets_v4/classes.rb', line 1243

def format
  @format
end

#start_indexFixnum

The character index where this run starts. Corresponds to the JSON property startIndex

Returns:

  • (Fixnum)


1237
1238
1239
# File 'generated/google/apis/sheets_v4/classes.rb', line 1237

def start_index
  @start_index
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1250
1251
1252
1253
# File 'generated/google/apis/sheets_v4/classes.rb', line 1250

def update!(**args)
  @start_index = args[:start_index] if args.key?(:start_index)
  @format = args[:format] if args.key?(:format)
end