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.
9602 9603 9604 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 9602 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
9594 9595 9596 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 9594 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
9600 9601 9602 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 9600 def theme_colors @theme_colors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9607 9608 9609 9610 |
# File 'lib/google/apis/sheets_v4/classes.rb', line 9607 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 |