class Google::Apis::DocsV1::TabStop

A tab stop within a paragraph.

Attributes

alignment[RW]

The alignment of this tab stop. If unset, the value defaults to START. Corresponds to the JSON property `alignment` @return [String]

offset[RW]

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

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/docs_v1/classes.rb, line 5121
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 5126
def update!(**args)
  @alignment = args[:alignment] if args.key?(:alignment)
  @offset = args[:offset] if args.key?(:offset)
end