class Google::Apis::SlidesV1::ParagraphMarker

A TextElement kind that represents the beginning of a new paragraph.

Attributes

bullet[RW]

Describes the bullet of a paragraph. Corresponds to the JSON property `bullet` @return [Google::Apis::SlidesV1::Bullet]

style[RW]

Styles that apply to a whole paragraph. If this text is contained in a shape with a parent placeholder, then these paragraph styles may be inherited from the parent. Which paragraph styles are inherited depend on the nesting level of lists: * A paragraph not in a list will inherit its paragraph style from the paragraph at the 0 nesting level of the list inside the parent placeholder.

  • A paragraph in a list will inherit its paragraph style from the paragraph

at its corresponding nesting level of the list inside the parent placeholder. Inherited paragraph styles are represented as unset fields in this message. Corresponds to the JSON property `style` @return [Google::Apis::SlidesV1::ParagraphStyle]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 2276
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/slides_v1/classes.rb, line 2281
def update!(**args)
  @bullet = args[:bullet] if args.key?(:bullet)
  @style = args[:style] if args.key?(:style)
end