class Google::Apis::SlidesV1::Outline

The outline of a PageElement. If these fields are unset, they may be inherited from a parent placeholder if it exists. If there is no parent, the fields will default to the value used for new page elements created in the Slides editor, which may depend on the page element kind.

Attributes

dash_style[RW]

The dash style of the outline. Corresponds to the JSON property `dashStyle` @return [String]

outline_fill[RW]

The fill of the outline. Corresponds to the JSON property `outlineFill` @return [Google::Apis::SlidesV1::OutlineFill]

property_state[RW]

The outline property state. Updating the outline on a page element will implicitly update this field to `RENDERED`, unless another value is specified in the same request. To have no outline on a page element, set this field to ` NOT_RENDERED`. In this case, any other outline fields set in the same request will be ignored. Corresponds to the JSON property `propertyState` @return [String]

weight[RW]

A magnitude in a single direction in the specified units. Corresponds to the JSON property `weight` @return [Google::Apis::SlidesV1::Dimension]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 1940
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/slides_v1/classes.rb, line 1945
def update!(**args)
  @dash_style = args[:dash_style] if args.key?(:dash_style)
  @outline_fill = args[:outline_fill] if args.key?(:outline_fill)
  @property_state = args[:property_state] if args.key?(:property_state)
  @weight = args[:weight] if args.key?(:weight)
end