Class: Google::Apis::SlidesV1::ParagraphStyle

Inherits:
Object
  • Object
show all
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

Styles that apply to a whole paragraph. If this text is contained in a shape with a parent placeholder, then these paragraph styles may be inherited from the parent. Which paragraph styles are inherited depend on the nesting level of lists:

  • A paragraph not in a list will inherit its paragraph style from the paragraph at the 0 nesting level of the list inside the parent placeholder.
  • A paragraph in a list will inherit its paragraph style from the paragraph at its corresponding nesting level of the list inside the parent placeholder. Inherited paragraph styles are represented as unset fields in this message.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ParagraphStyle

Returns a new instance of ParagraphStyle



2238
2239
2240
# File 'generated/google/apis/slides_v1/classes.rb', line 2238

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#alignmentString

The text alignment for this paragraph. Corresponds to the JSON property alignment

Returns:

  • (String)


2193
2194
2195
# File 'generated/google/apis/slides_v1/classes.rb', line 2193

def alignment
  @alignment
end

#directionString

The text direction of this paragraph. If unset, the value defaults to LEFT_TO_RIGHT since text direction is not inherited. Corresponds to the JSON property direction

Returns:

  • (String)


2200
2201
2202
# File 'generated/google/apis/slides_v1/classes.rb', line 2200

def direction
  @direction
end

#indent_endGoogle::Apis::SlidesV1::Dimension

A magnitude in a single direction in the specified units. Corresponds to the JSON property indentEnd



2205
2206
2207
# File 'generated/google/apis/slides_v1/classes.rb', line 2205

def indent_end
  @indent_end
end

#indent_first_lineGoogle::Apis::SlidesV1::Dimension

A magnitude in a single direction in the specified units. Corresponds to the JSON property indentFirstLine



2210
2211
2212
# File 'generated/google/apis/slides_v1/classes.rb', line 2210

def indent_first_line
  @indent_first_line
end

#indent_startGoogle::Apis::SlidesV1::Dimension

A magnitude in a single direction in the specified units. Corresponds to the JSON property indentStart



2215
2216
2217
# File 'generated/google/apis/slides_v1/classes.rb', line 2215

def indent_start
  @indent_start
end

#line_spacingFloat

The amount of space between lines, as a percentage of normal, where normal is represented as 100.0. If unset, the value is inherited from the parent. Corresponds to the JSON property lineSpacing

Returns:

  • (Float)


2221
2222
2223
# File 'generated/google/apis/slides_v1/classes.rb', line 2221

def line_spacing
  @line_spacing
end

#space_aboveGoogle::Apis::SlidesV1::Dimension

A magnitude in a single direction in the specified units. Corresponds to the JSON property spaceAbove



2226
2227
2228
# File 'generated/google/apis/slides_v1/classes.rb', line 2226

def space_above
  @space_above
end

#space_belowGoogle::Apis::SlidesV1::Dimension

A magnitude in a single direction in the specified units. Corresponds to the JSON property spaceBelow



2231
2232
2233
# File 'generated/google/apis/slides_v1/classes.rb', line 2231

def space_below
  @space_below
end

#spacing_modeString

The spacing mode for the paragraph. Corresponds to the JSON property spacingMode

Returns:

  • (String)


2236
2237
2238
# File 'generated/google/apis/slides_v1/classes.rb', line 2236

def spacing_mode
  @spacing_mode
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
# File 'generated/google/apis/slides_v1/classes.rb', line 2243

def update!(**args)
  @alignment = args[:alignment] if args.key?(:alignment)
  @direction = args[:direction] if args.key?(:direction)
  @indent_end = args[:indent_end] if args.key?(:indent_end)
  @indent_first_line = args[:indent_first_line] if args.key?(:indent_first_line)
  @indent_start = args[:indent_start] if args.key?(:indent_start)
  @line_spacing = args[:line_spacing] if args.key?(:line_spacing)
  @space_above = args[:space_above] if args.key?(:space_above)
  @space_below = args[:space_below] if args.key?(:space_below)
  @spacing_mode = args[:spacing_mode] if args.key?(:spacing_mode)
end