Class: Google::Apis::SlidesV1::DeleteParagraphBulletsRequest
- Inherits:
-
Object
- Object
- Google::Apis::SlidesV1::DeleteParagraphBulletsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/slides_v1/classes.rb,
generated/google/apis/slides_v1/representations.rb,
generated/google/apis/slides_v1/representations.rb
Overview
Deletes bullets from all of the paragraphs that overlap with the given text index range. The nesting level of each paragraph will be visually preserved by adding indent to the start of the corresponding paragraph.
Instance Attribute Summary collapse
-
#cell_location ⇒ Google::Apis::SlidesV1::TableCellLocation
A location of a single table cell within a table.
-
#object_id_prop ⇒ String
The object ID of the shape or table containing the text to delete bullets from.
-
#text_range ⇒ Google::Apis::SlidesV1::Range
Specifies a contiguous range of an indexed collection, such as characters in text.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeleteParagraphBulletsRequest
constructor
A new instance of DeleteParagraphBulletsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DeleteParagraphBulletsRequest
Returns a new instance of DeleteParagraphBulletsRequest
1716 1717 1718 |
# File 'generated/google/apis/slides_v1/classes.rb', line 1716 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cell_location ⇒ Google::Apis::SlidesV1::TableCellLocation
A location of a single table cell within a table.
Corresponds to the JSON property cellLocation
1714 1715 1716 |
# File 'generated/google/apis/slides_v1/classes.rb', line 1714 def cell_location @cell_location end |
#object_id_prop ⇒ String
The object ID of the shape or table containing the text to delete bullets
from.
Corresponds to the JSON property objectId
1703 1704 1705 |
# File 'generated/google/apis/slides_v1/classes.rb', line 1703 def object_id_prop @object_id_prop end |
#text_range ⇒ Google::Apis::SlidesV1::Range
Specifies a contiguous range of an indexed collection, such as characters in
text.
Corresponds to the JSON property textRange
1709 1710 1711 |
# File 'generated/google/apis/slides_v1/classes.rb', line 1709 def text_range @text_range end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1721 1722 1723 1724 1725 |
# File 'generated/google/apis/slides_v1/classes.rb', line 1721 def update!(**args) @object_id_prop = args[:object_id_prop] if args.key?(:object_id_prop) @text_range = args[:text_range] if args.key?(:text_range) @cell_location = args[:cell_location] if args.key?(:cell_location) end |