class Google::Apis::DocsV1::SectionColumnProperties

Properties that apply to a section's column.

Attributes

padding_end[RW]

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

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 4412
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 4417
def update!(**args)
  @padding_end = args[:padding_end] if args.key?(:padding_end)
  @width = args[:width] if args.key?(:width)
end