Class: Google::Apis::SlidesV1::Bullet
- Inherits:
-
Object
- Object
- Google::Apis::SlidesV1::Bullet
- 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
Describes the bullet of a paragraph.
Instance Attribute Summary collapse
-
#bullet_style ⇒ Google::Apis::SlidesV1::TextStyle
Represents the styling that can be applied to a TextRun.
-
#glyph ⇒ String
The rendered bullet glyph for this paragraph.
-
#list_id ⇒ String
The ID of the list this paragraph belongs to.
-
#nesting_level ⇒ Fixnum
The nesting level of this paragraph in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Bullet
constructor
A new instance of Bullet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Bullet
Returns a new instance of Bullet
228 229 230 |
# File 'generated/google/apis/slides_v1/classes.rb', line 228 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bullet_style ⇒ Google::Apis::SlidesV1::TextStyle
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
211 212 213 |
# File 'generated/google/apis/slides_v1/classes.rb', line 211 def bullet_style @bullet_style end |
#glyph ⇒ String
The rendered bullet glyph for this paragraph.
Corresponds to the JSON property glyph
216 217 218 |
# File 'generated/google/apis/slides_v1/classes.rb', line 216 def glyph @glyph end |
#list_id ⇒ String
The ID of the list this paragraph belongs to.
Corresponds to the JSON property listId
221 222 223 |
# File 'generated/google/apis/slides_v1/classes.rb', line 221 def list_id @list_id end |
#nesting_level ⇒ Fixnum
The nesting level of this paragraph in the list.
Corresponds to the JSON property nestingLevel
226 227 228 |
# File 'generated/google/apis/slides_v1/classes.rb', line 226 def nesting_level @nesting_level end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
233 234 235 236 237 238 |
# File 'generated/google/apis/slides_v1/classes.rb', line 233 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 |