google_api_sheets v0.2.0 GoogleApi.Sheets.V4.Model.BandingProperties View Source
Properties referring a single dimension (either row or column). If both BandedRange.row_properties and BandedRange.column_properties are set, the fill colors are applied to cells according to the following rules: header_color and footer_color take priority over band colors. first_band_color takes priority over second_band_color. * row_properties takes priority over column_properties. For example, the first row color takes priority over the first column color, but the first column color takes priority over the second row color. Similarly, the row header takes priority over the column header in the top left cell, but the column header takes priority over the first row color if the row header is not set.
Attributes
- firstBandColor (Color): The first color that is alternating. (Required) Defaults to:
null
. - footerColor (Color): The color of the last row or column. If this field is not set, the last row or column will be filled with either first_band_color or second_band_color, depending on the color of the previous row or column. Defaults to:
null
. - headerColor (Color): The color of the first row or column. If this field is set, the first row or column will be filled with this color and the colors will alternate between first_band_color and second_band_color starting from the second row or column. Otherwise, the first row or column will be filled with first_band_color and the colors will proceed to alternate as they normally would. Defaults to:
null
. - secondBandColor (Color): The second color that is alternating. (Required) Defaults to:
null
.
Link to this section Summary
Functions
Unwrap a decoded JSON object into its complex fields
Link to this section Types
t()
View Source
t() :: %GoogleApi.Sheets.V4.Model.BandingProperties{
firstBandColor: GoogleApi.Sheets.V4.Model.Color.t(),
footerColor: GoogleApi.Sheets.V4.Model.Color.t(),
headerColor: GoogleApi.Sheets.V4.Model.Color.t(),
secondBandColor: GoogleApi.Sheets.V4.Model.Color.t()
}
t() :: %GoogleApi.Sheets.V4.Model.BandingProperties{ firstBandColor: GoogleApi.Sheets.V4.Model.Color.t(), footerColor: GoogleApi.Sheets.V4.Model.Color.t(), headerColor: GoogleApi.Sheets.V4.Model.Color.t(), secondBandColor: GoogleApi.Sheets.V4.Model.Color.t() }
Link to this section Functions
decode(value, options) View Source
Unwrap a decoded JSON object into its complex fields.