pub struct TableRowsProperties {
pub first_band_color_style: Option<ColorStyle>,
pub footer_color_style: Option<ColorStyle>,
pub header_color_style: Option<ColorStyle>,
pub second_band_color_style: Option<ColorStyle>,
}Expand description
The table row properties.
This type is not used in any activity, and only used as part of another schema.
Fields§
§first_band_color_style: Option<ColorStyle>The first color that is alternating. If this field is set, the first banded row is filled with the specified color. Otherwise, the first banded row is filled with a default color.
The color of the last row. If this field is not set a footer is not added, the last row is filled with either first_band_color_style or second_band_color_style, depending on the color of the previous row. If updating an existing table without a footer to have a footer, the range will be expanded by 1 row. If updating an existing table with a footer and removing a footer, the range will be shrunk by 1 row.
header_color_style: Option<ColorStyle>The color of the header row. If this field is set, the header row is filled with the specified color. Otherwise, the header row is filled with a default color.
second_band_color_style: Option<ColorStyle>The second color that is alternating. If this field is set, the second banded row is filled with the specified color. Otherwise, the second banded row is filled with a default color.
Trait Implementations§
Source§impl Clone for TableRowsProperties
impl Clone for TableRowsProperties
Source§fn clone(&self) -> TableRowsProperties
fn clone(&self) -> TableRowsProperties
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more