Class: Google::Apis::SheetsV4::SpreadsheetTheme
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::SpreadsheetTheme
- 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
Represents spreadsheet theme
Instance Attribute Summary collapse
-
#primary_font_family ⇒ String
Name of the primary font family.
-
#theme_colors ⇒ Array<Google::Apis::SheetsV4::ThemeColorPair>
The spreadsheet theme color pairs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SpreadsheetTheme
constructor
A new instance of SpreadsheetTheme.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SpreadsheetTheme
Returns a new instance of SpreadsheetTheme.
9423 9424 9425 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 9423 def initialize(**args) update!(**args) end |
Instance Attribute Details
#primary_font_family ⇒ String
Name of the primary font family.
Corresponds to the JSON property primaryFontFamily
9415 9416 9417 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 9415 def primary_font_family @primary_font_family end |
#theme_colors ⇒ Array<Google::Apis::SheetsV4::ThemeColorPair>
The spreadsheet theme color pairs. To update you must provide all theme color
pairs.
Corresponds to the JSON property themeColors
9421 9422 9423 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 9421 def theme_colors @theme_colors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9428 9429 9430 9431 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 9428 def update!(**args) @primary_font_family = args[:primary_font_family] if args.key?(:primary_font_family) @theme_colors = args[:theme_colors] if args.key?(:theme_colors) end |