google_api_sheets v0.0.2 GoogleApi.Sheets.V4.Model.TextFormat View Source

The format of a run of text in a cell. Absent values indicate that the field isn't specified.

Attributes

  • bold (boolean()): True if the text is bold. Defaults to: null.
  • fontFamily (String.t): The font family. Defaults to: null.
  • fontSize (integer()): The size of the font. Defaults to: null.
  • foregroundColor (Color): The foreground color of the text. Defaults to: null.
  • italic (boolean()): True if the text is italicized. Defaults to: null.
  • strikethrough (boolean()): True if the text has a strikethrough. Defaults to: null.
  • underline (boolean()): True if the text is underlined. Defaults to: null.

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %GoogleApi.Sheets.V4.Model.TextFormat{
  bold: any(),
  fontFamily: any(),
  fontSize: any(),
  foregroundColor: GoogleApi.Sheets.V4.Model.Color.t(),
  italic: any(),
  strikethrough: any(),
  underline: any()
}