Class: Google::Apis::DocsV1::ParagraphBorder

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

Overview

A border around a paragraph.

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

Returns a new instance of ParagraphBorder



3070
3071
3072
# File 'generated/google/apis/docs_v1/classes.rb', line 3070

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

Instance Attribute Details

#colorGoogle::Apis::DocsV1::OptionalColor

A color that can either be fully opaque or fully transparent. Corresponds to the JSON property color



3053
3054
3055
# File 'generated/google/apis/docs_v1/classes.rb', line 3053

def color
  @color
end

#dash_styleString

The dash style of the border. Corresponds to the JSON property dashStyle

Returns:

  • (String)


3058
3059
3060
# File 'generated/google/apis/docs_v1/classes.rb', line 3058

def dash_style
  @dash_style
end

#paddingGoogle::Apis::DocsV1::Dimension

A magnitude in a single direction in the specified units. Corresponds to the JSON property padding



3063
3064
3065
# File 'generated/google/apis/docs_v1/classes.rb', line 3063

def padding
  @padding
end

#widthGoogle::Apis::DocsV1::Dimension

A magnitude in a single direction in the specified units. Corresponds to the JSON property width



3068
3069
3070
# File 'generated/google/apis/docs_v1/classes.rb', line 3068

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3075
3076
3077
3078
3079
3080
# File 'generated/google/apis/docs_v1/classes.rb', line 3075

def update!(**args)
  @color = args[:color] if args.key?(:color)
  @dash_style = args[:dash_style] if args.key?(:dash_style)
  @padding = args[:padding] if args.key?(:padding)
  @width = args[:width] if args.key?(:width)
end