Class: Google::Apis::DocsV1::TextStyle

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/docs_v1/classes.rb,
lib/google/apis/docs_v1/representations.rb,
lib/google/apis/docs_v1/representations.rb

Overview

Represents the styling that can be applied to text. Inherited text styles are represented as unset fields in this message. A text style's parent depends on where the text style is defined: * The TextStyle of text in a Paragraph inherits from the paragraph's corresponding named style type. * The TextStyle on a named style inherits from the normal text named style. * The TextStyle of the normal text named style inherits from the default text style in the Docs editor. * The TextStyle on a Paragraph element that's contained in a table may inherit its text style from the table style. If the text style does not inherit from a parent, unsetting fields will revert the style to a value matching the defaults in the Docs editor.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TextStyle

Returns a new instance of TextStyle.



6340
6341
6342
# File 'lib/google/apis/docs_v1/classes.rb', line 6340

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

Instance Attribute Details

#background_colorGoogle::Apis::DocsV1::OptionalColor

A color that can either be fully opaque or fully transparent. Corresponds to the JSON property backgroundColor



6280
6281
6282
# File 'lib/google/apis/docs_v1/classes.rb', line 6280

def background_color
  @background_color
end

#baseline_offsetString

The text's vertical offset from its normal position. Text with SUPERSCRIPT or SUBSCRIPT baseline offsets is automatically rendered in a smaller font size, computed based on the font_size field. Changes in this field don't affect the font_size. Corresponds to the JSON property baselineOffset

Returns:

  • (String)


6288
6289
6290
# File 'lib/google/apis/docs_v1/classes.rb', line 6288

def baseline_offset
  @baseline_offset
end

#boldBoolean Also known as: bold?

Whether or not the text is rendered as bold. Corresponds to the JSON property bold

Returns:

  • (Boolean)


6293
6294
6295
# File 'lib/google/apis/docs_v1/classes.rb', line 6293

def bold
  @bold
end

#font_sizeGoogle::Apis::DocsV1::Dimension

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



6299
6300
6301
# File 'lib/google/apis/docs_v1/classes.rb', line 6299

def font_size
  @font_size
end

#foreground_colorGoogle::Apis::DocsV1::OptionalColor

A color that can either be fully opaque or fully transparent. Corresponds to the JSON property foregroundColor



6304
6305
6306
# File 'lib/google/apis/docs_v1/classes.rb', line 6304

def foreground_color
  @foreground_color
end

#italicBoolean Also known as: italic?

Whether or not the text is italicized. Corresponds to the JSON property italic

Returns:

  • (Boolean)


6309
6310
6311
# File 'lib/google/apis/docs_v1/classes.rb', line 6309

def italic
  @italic
end

A reference to another portion of a document or an external URL resource. Corresponds to the JSON property link



6315
6316
6317
# File 'lib/google/apis/docs_v1/classes.rb', line 6315

def link
  @link
end

#small_capsBoolean Also known as: small_caps?

Whether or not the text is in small capital letters. Corresponds to the JSON property smallCaps

Returns:

  • (Boolean)


6320
6321
6322
# File 'lib/google/apis/docs_v1/classes.rb', line 6320

def small_caps
  @small_caps
end

#strikethroughBoolean Also known as: strikethrough?

Whether or not the text is struck through. Corresponds to the JSON property strikethrough

Returns:

  • (Boolean)


6326
6327
6328
# File 'lib/google/apis/docs_v1/classes.rb', line 6326

def strikethrough
  @strikethrough
end

#underlineBoolean Also known as: underline?

Whether or not the text is underlined. Corresponds to the JSON property underline

Returns:

  • (Boolean)


6332
6333
6334
# File 'lib/google/apis/docs_v1/classes.rb', line 6332

def underline
  @underline
end

#weighted_font_familyGoogle::Apis::DocsV1::WeightedFontFamily

Represents a font family and weight of text. Corresponds to the JSON property weightedFontFamily



6338
6339
6340
# File 'lib/google/apis/docs_v1/classes.rb', line 6338

def weighted_font_family
  @weighted_font_family
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
# File 'lib/google/apis/docs_v1/classes.rb', line 6345

def update!(**args)
  @background_color = args[:background_color] if args.key?(:background_color)
  @baseline_offset = args[:baseline_offset] if args.key?(:baseline_offset)
  @bold = args[:bold] if args.key?(:bold)
  @font_size = args[:font_size] if args.key?(:font_size)
  @foreground_color = args[:foreground_color] if args.key?(:foreground_color)
  @italic = args[:italic] if args.key?(:italic)
  @link = args[:link] if args.key?(:link)
  @small_caps = args[:small_caps] if args.key?(:small_caps)
  @strikethrough = args[:strikethrough] if args.key?(:strikethrough)
  @underline = args[:underline] if args.key?(:underline)
  @weighted_font_family = args[:weighted_font_family] if args.key?(:weighted_font_family)
end