class Google::Apis::SlidesV1::CreateParagraphBulletsRequest
Creates bullets for all of the paragraphs that overlap with the given text index 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
The kinds of bullet glyphs to be used. Defaults to the ` BULLET_DISC_CIRCLE_SQUARE` preset. Corresponds to the JSON property `bulletPreset` @return [String]
A location of a single table cell within a table. Corresponds to the JSON property `cellLocation` @return [Google::Apis::SlidesV1::TableCellLocation]
The object ID of the shape or table containing the text to add bullets to. Corresponds to the JSON property `objectId` @return [String]
Specifies a contiguous range of an indexed collection, such as characters in text. Corresponds to the JSON property `textRange` @return [Google::Apis::SlidesV1::Range]
Public Class Methods
# File lib/google/apis/slides_v1/classes.rb, line 489 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/slides_v1/classes.rb, line 494 def update!(**args) @bullet_preset = args[:bullet_preset] if args.key?(:bullet_preset) @cell_location = args[:cell_location] if args.key?(:cell_location) @object_id_prop = args[:object_id_prop] if args.key?(:object_id_prop) @text_range = args[:text_range] if args.key?(:text_range) end