Class: Google::Apis::SlidesV1::PageProperties

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/slides_v1/classes.rb,
generated/google/apis/slides_v1/representations.rb,
generated/google/apis/slides_v1/representations.rb

Overview

The properties of the Page. The page will inherit properties from the parent page. Depending on the page type the hierarchy is defined in either SlideProperties or LayoutProperties.

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) ⇒ PageProperties

Returns a new instance of PageProperties.



2318
2319
2320
# File 'generated/google/apis/slides_v1/classes.rb', line 2318

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

Instance Attribute Details

#color_schemeGoogle::Apis::SlidesV1::ColorScheme

The palette of predefined colors for a page. Corresponds to the JSON property colorScheme



2311
2312
2313
# File 'generated/google/apis/slides_v1/classes.rb', line 2311

def color_scheme
  @color_scheme
end

#page_background_fillGoogle::Apis::SlidesV1::PageBackgroundFill

The page background fill. Corresponds to the JSON property pageBackgroundFill



2316
2317
2318
# File 'generated/google/apis/slides_v1/classes.rb', line 2316

def page_background_fill
  @page_background_fill
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2323
2324
2325
2326
# File 'generated/google/apis/slides_v1/classes.rb', line 2323

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