class Google::Apis::DocsV1::CreateParagraphBulletsRequest

Creates bullets for all of the paragraphs that overlap with the given range. The nesting level of each paragraph will be determined by counting leading tabs in front of each paragraph. To avoid excess space between the bullet and the corresponding paragraph, these leading tabs are removed by this request. This may change the indices of parts of the text. If the paragraph immediately before paragraphs being updated is in a list with a matching preset, the paragraphs being updated are added to that preceding list.

Attributes

bullet_preset[RW]

The kinds of bullet glyphs to be used. Corresponds to the JSON property `bulletPreset` @return [String]

range[RW]

Specifies a contiguous range of text. Corresponds to the JSON property `range` @return [Google::Apis::DocsV1::Range]

Public Class Methods

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