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
The dash style of the outline. Corresponds to the JSON property `dashStyle` @return [String]
The fill of the outline. Corresponds to the JSON property `outlineFill` @return [Google::Apis::SlidesV1::OutlineFill]
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]
A magnitude in a single direction in the specified units. Corresponds to the JSON property `weight` @return [Google::Apis::SlidesV1::Dimension]
Public Class Methods
# File lib/google/apis/slides_v1/classes.rb, line 1940 def initialize(**args) update!(**args) end
Public Instance Methods
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