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

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

Overview

A border around a paragraph.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ParagraphBorder

Returns a new instance of ParagraphBorder.



3463
3464
3465
# File 'lib/google/apis/docs_v1/classes.rb', line 3463

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



3446
3447
3448
# File 'lib/google/apis/docs_v1/classes.rb', line 3446

def color
  @color
end

#dash_styleString

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

Returns:

  • (String)


3451
3452
3453
# File 'lib/google/apis/docs_v1/classes.rb', line 3451

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



3456
3457
3458
# File 'lib/google/apis/docs_v1/classes.rb', line 3456

def padding
  @padding
end

#widthGoogle::Apis::DocsV1::Dimension

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



3461
3462
3463
# File 'lib/google/apis/docs_v1/classes.rb', line 3461

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3468
3469
3470
3471
3472
3473
# File 'lib/google/apis/docs_v1/classes.rb', line 3468

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