Class: Google::Apis::SheetsV4::SpreadsheetTheme

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

Represents spreadsheet theme

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SpreadsheetTheme

Returns a new instance of SpreadsheetTheme.



9402
9403
9404
# File 'generated/google/apis/sheets_v4/classes.rb', line 9402

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

Instance Attribute Details

#primary_font_familyString

Name of the primary font family. Corresponds to the JSON property primaryFontFamily

Returns:

  • (String)


9394
9395
9396
# File 'generated/google/apis/sheets_v4/classes.rb', line 9394

def primary_font_family
  @primary_font_family
end

#theme_colorsArray<Google::Apis::SheetsV4::ThemeColorPair>

The spreadsheet theme color pairs. To update you must provide all theme color pairs. Corresponds to the JSON property themeColors



9400
9401
9402
# File 'generated/google/apis/sheets_v4/classes.rb', line 9400

def theme_colors
  @theme_colors
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9407
9408
9409
9410
# File 'generated/google/apis/sheets_v4/classes.rb', line 9407

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