GoogleApi.Slides.V1.Model.TextStyle (google_api_slides v0.24.0)
View SourceRepresents 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.
Attributes
-
backgroundColor
(type:GoogleApi.Slides.V1.Model.OptionalColor.t
, default:nil
) - The background color of the text. If set, the color is either opaque or transparent, depending on if theopaque_color
field in it is set. -
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. Thefont_size
itself is not affected by changes in this field. -
bold
(type:boolean()
, default:nil
) - Whether or not the text is rendered as bold. -
fontFamily
(type:String.t
, default:nil
) - The font family of the text. The font family can be any font from the Font menu in Slides or from [Google Fonts] (https://fonts.google.com/). If the font name is unrecognized, the text is rendered inArial
. Some fonts can affect the weight of the text. If an update request specifies values for bothfont_family
andbold
, the explicitly-setbold
value is used. -
fontSize
(type:GoogleApi.Slides.V1.Model.Dimension.t
, default:nil
) - The size of the text's font. When read, thefont_size
will specified in points. -
foregroundColor
(type:GoogleApi.Slides.V1.Model.OptionalColor.t
, default:nil
) - The color of the text itself. If set, the color is either opaque or transparent, depending on if theopaque_color
field in it is set. -
italic
(type:boolean()
, default:nil
) - Whether or not the text is italicized. -
link
(type:GoogleApi.Slides.V1.Model.Link.t
, default:nil
) - The hyperlink destination of the text. If unset, there is 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 set to ThemeColorType.HYPERLINK 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.Slides.V1.Model.WeightedFontFamily.t
, default:nil
) - The font family and rendered weight of the text. This field is an extension offont_family
meant to support explicit font weights without breaking backwards compatibility. As such, when reading the style of a range of text, the value ofweighted_font_family#font_family
will always be equal to that offont_family
. However, when writing, if both fields are included in the field mask (either explicitly or through the wildcard"*"
), their values are reconciled as follows: Iffont_family
is set andweighted_font_family
is not, the value offont_family
is applied with weight400
("normal"). If both fields are set, the value offont_family
must match that ofweighted_font_family#font_family
. If so, the font family and weight ofweighted_font_family
is applied. Otherwise, a 400 bad request error is returned. Ifweighted_font_family
is set andfont_family
is not, the font family and weight ofweighted_font_family
is applied. If neither field is set, the font family and weight of the text inherit from the parent. Note that these properties cannot inherit separately from each other. 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.Slides.V1.Model.TextStyle{ backgroundColor: GoogleApi.Slides.V1.Model.OptionalColor.t() | nil, baselineOffset: String.t() | nil, bold: boolean() | nil, fontFamily: String.t() | nil, fontSize: GoogleApi.Slides.V1.Model.Dimension.t() | nil, foregroundColor: GoogleApi.Slides.V1.Model.OptionalColor.t() | nil, italic: boolean() | nil, link: GoogleApi.Slides.V1.Model.Link.t() | nil, smallCaps: boolean() | nil, strikethrough: boolean() | nil, underline: boolean() | nil, weightedFontFamily: GoogleApi.Slides.V1.Model.WeightedFontFamily.t() | nil }