View Source GoogleApi.Docs.V1.Model.TextStyle (google_api_docs v0.16.0)
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.
Attributes
-
backgroundColor
(type:GoogleApi.Docs.V1.Model.OptionalColor.t
, default:nil
) - The background color of the text. If set, the color is either an RGB color or transparent, depending on thecolor
field. -
baselineOffset
(type:String.t
, default:nil
) - The text's vertical offset from its normal position. Text withSUPERSCRIPT
orSUBSCRIPT
baseline offsets is automatically rendered in a smaller font size, computed based on thefont_size
field. Changes in this field don't affect thefont_size
. -
bold
(type:boolean()
, default:nil
) - Whether or not the text is rendered as bold. -
fontSize
(type:GoogleApi.Docs.V1.Model.Dimension.t
, default:nil
) - The size of the text's font. -
foregroundColor
(type:GoogleApi.Docs.V1.Model.OptionalColor.t
, default:nil
) - The foreground color of the text. If set, the color is either an RGB color or transparent, depending on thecolor
field. -
italic
(type:boolean()
, default:nil
) - Whether or not the text is italicized. -
link
(type:GoogleApi.Docs.V1.Model.Link.t
, default:nil
) - The hyperlink destination of the text. If unset, there's no link. Links are not inherited from parent text. Changing the link in an update request causes some other changes to the text style of the range: When setting a link, the text foreground color will be updated to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults. Setting a link on a text range that overlaps with an existing link will also update the existing link to point to the new URL. Links are not settable on newline characters. As a result, setting a link on a text range that crosses a paragraph boundary, such as"ABC\n123"
, will separate the newline character(s) into their own text runs. The link will be applied separately to the runs before and after the newline. Removing a link will update the text style of the range to match the style of the preceding text (or the default text styles if the preceding text is another link) unless different styles are being set in the same request. -
smallCaps
(type:boolean()
, default:nil
) - Whether or not the text is in small capital letters. -
strikethrough
(type:boolean()
, default:nil
) - Whether or not the text is struck through. -
underline
(type:boolean()
, default:nil
) - Whether or not the text is underlined. -
weightedFontFamily
(type:GoogleApi.Docs.V1.Model.WeightedFontFamily.t
, default:nil
) - The font family and rendered weight of the text. If an update request specifies values for bothweighted_font_family
andbold
, theweighted_font_family
is applied first, thenbold
. Ifweighted_font_family#weight
is not set, it defaults to400
. Ifweighted_font_family
is set, thenweighted_font_family#font_family
must also be set with a non-empty value. Otherwise, a 400 bad request error is returned.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Docs.V1.Model.TextStyle{ backgroundColor: GoogleApi.Docs.V1.Model.OptionalColor.t() | nil, baselineOffset: String.t() | nil, bold: boolean() | nil, fontSize: GoogleApi.Docs.V1.Model.Dimension.t() | nil, foregroundColor: GoogleApi.Docs.V1.Model.OptionalColor.t() | nil, italic: boolean() | nil, link: GoogleApi.Docs.V1.Model.Link.t() | nil, smallCaps: boolean() | nil, strikethrough: boolean() | nil, underline: boolean() | nil, weightedFontFamily: GoogleApi.Docs.V1.Model.WeightedFontFamily.t() | nil }
Functions
Unwrap a decoded JSON object into its complex fields.