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

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SpreadsheetTheme

Returns a new instance of SpreadsheetTheme.



9601
9602
9603
# File 'lib/google/apis/sheets_v4/classes.rb', line 9601

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)


9593
9594
9595
# File 'lib/google/apis/sheets_v4/classes.rb', line 9593

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



9599
9600
9601
# File 'lib/google/apis/sheets_v4/classes.rb', line 9599

def theme_colors
  @theme_colors
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9606
9607
9608
9609
# File 'lib/google/apis/sheets_v4/classes.rb', line 9606

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