Class: Google::Apis::DocsV1::PositionedObjectPositioning

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

The positioning of a PositionedObject. The positioned object is positioned relative to the beginning of the Paragraph it is tethered to.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PositionedObjectPositioning

Returns a new instance of PositionedObjectPositioning.



3725
3726
3727
# File 'lib/google/apis/docs_v1/classes.rb', line 3725

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

Instance Attribute Details

#layoutString

The layout of this positioned object. Corresponds to the JSON property layout

Returns:

  • (String)


3713
3714
3715
# File 'lib/google/apis/docs_v1/classes.rb', line 3713

def layout
  @layout
end

#left_offsetGoogle::Apis::DocsV1::Dimension

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



3718
3719
3720
# File 'lib/google/apis/docs_v1/classes.rb', line 3718

def left_offset
  @left_offset
end

#top_offsetGoogle::Apis::DocsV1::Dimension

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



3723
3724
3725
# File 'lib/google/apis/docs_v1/classes.rb', line 3723

def top_offset
  @top_offset
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3730
3731
3732
3733
3734
# File 'lib/google/apis/docs_v1/classes.rb', line 3730

def update!(**args)
  @layout = args[:layout] if args.key?(:layout)
  @left_offset = args[:left_offset] if args.key?(:left_offset)
  @top_offset = args[:top_offset] if args.key?(:top_offset)
end