class Google::Apis::SlidesV1::Bullet

Describes the bullet of a paragraph.

Attributes

bullet_style[RW]

Represents the styling that can be applied to a TextRun. If this text is contained in a shape with a parent placeholder, then these text styles may be inherited from the parent. Which text styles are inherited depend on the nesting level of lists: * A text run in a paragraph that is not in a list will inherit its text style from the the newline character in the paragraph at the 0 nesting level of the list inside the parent placeholder. * A text run in a paragraph that is in a list will inherit its text style from the newline character in the paragraph at its corresponding nesting level of the list inside the parent placeholder. Inherited text styles are represented as unset fields in this message. If text is contained in a shape without a parent placeholder, unsetting these fields will revert the style to a value matching the defaults in the Slides editor. Corresponds to the JSON property `bulletStyle` @return [Google::Apis::SlidesV1::TextStyle]

glyph[RW]

The rendered bullet glyph for this paragraph. Corresponds to the JSON property `glyph` @return [String]

list_id[RW]

The ID of the list this paragraph belongs to. Corresponds to the JSON property `listId` @return [String]

nesting_level[RW]

The nesting level of this paragraph in the list. Corresponds to the JSON property `nestingLevel` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 260
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 265
def update!(**args)
  @bullet_style = args[:bullet_style] if args.key?(:bullet_style)
  @glyph = args[:glyph] if args.key?(:glyph)
  @list_id = args[:list_id] if args.key?(:list_id)
  @nesting_level = args[:nesting_level] if args.key?(:nesting_level)
end