class Google::Apis::DocsV1::EmbeddedObjectBorder

A border around an EmbeddedObject.

Attributes

color[RW]

A color that can either be fully opaque or fully transparent. Corresponds to the JSON property `color` @return [Google::Apis::DocsV1::OptionalColor]

dash_style[RW]

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

property_state[RW]

The property state of the border property. Corresponds to the JSON property `propertyState` @return [String]

width[RW]

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

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/docs_v1/classes.rb, line 1413
def update!(**args)
  @color = args[:color] if args.key?(:color)
  @dash_style = args[:dash_style] if args.key?(:dash_style)
  @property_state = args[:property_state] if args.key?(:property_state)
  @width = args[:width] if args.key?(:width)
end