pub struct TextFormat {
pub bold: Option<bool>,
pub font_family: Option<String>,
pub font_size: Option<i32>,
pub foreground_color: Option<Color>,
pub foreground_color_style: Option<ColorStyle>,
pub italic: Option<bool>,
pub link: Option<Link>,
pub strikethrough: Option<bool>,
pub underline: Option<bool>,
}Expand description
The format of a run of text in a cell. Absent values indicate that the field isn’t specified.
This type is not used in any activity, and only used as part of another schema.
Fields§
§bold: Option<bool>True if the text is bold.
font_family: Option<String>The font family.
font_size: Option<i32>The size of the font.
foreground_color: Option<Color>The foreground color of the text. Deprecated: Use foreground_color_style.
foreground_color_style: Option<ColorStyle>The foreground color of the text. If foreground_color is also set, this field takes precedence.
italic: Option<bool>True if the text is italicized.
link: Option<Link>The link destination of the text, if any. Setting the link field in a TextFormatRun will clear the cell’s existing links or a cell-level link set in the same request. When a link is set, the text foreground color will be set 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.
strikethrough: Option<bool>True if the text has a strikethrough.
underline: Option<bool>True if the text is underlined.
Trait Implementations§
Source§impl Clone for TextFormat
impl Clone for TextFormat
Source§fn clone(&self) -> TextFormat
fn clone(&self) -> TextFormat
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more