View Source GoogleApi.Sheets.V4.Model.BandingProperties (google_api_sheets v0.34.0)
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
(type:GoogleApi.Sheets.V4.Model.Color.t
, default:nil
) - The first color that is alternating. (Required) Deprecated: Use first_band_color_style. -
firstBandColorStyle
(type:GoogleApi.Sheets.V4.Model.ColorStyle.t
, default:nil
) - The first color that is alternating. (Required) If first_band_color is also set, this field takes precedence. -
footerColor
(type:GoogleApi.Sheets.V4.Model.Color.t
, default:nil
) - The color of the last row or column. If this field is not set, the last row or column is filled with either first_band_color or second_band_color, depending on the color of the previous row or column. Deprecated: Use footer_color_style. -
footerColorStyle
(type:GoogleApi.Sheets.V4.Model.ColorStyle.t
, default:nil
) - The color of the last row or column. If this field is not set, the last row or column is filled with either first_band_color or second_band_color, depending on the color of the previous row or column. If footer_color is also set, this field takes precedence. -
headerColor
(type:GoogleApi.Sheets.V4.Model.Color.t
, default:nil
) - The color of the first row or column. If this field is set, the first row or column is filled with this color and the colors alternate between first_band_color and second_band_color starting from the second row or column. Otherwise, the first row or column is filled with first_band_color and the colors proceed to alternate as they normally would. Deprecated: Use header_color_style. -
headerColorStyle
(type:GoogleApi.Sheets.V4.Model.ColorStyle.t
, default:nil
) - The color of the first row or column. If this field is set, the first row or column is filled with this color and the colors alternate between first_band_color and second_band_color starting from the second row or column. Otherwise, the first row or column is filled with first_band_color and the colors proceed to alternate as they normally would. If header_color is also set, this field takes precedence. -
secondBandColor
(type:GoogleApi.Sheets.V4.Model.Color.t
, default:nil
) - The second color that is alternating. (Required) Deprecated: Use second_band_color_style. -
secondBandColorStyle
(type:GoogleApi.Sheets.V4.Model.ColorStyle.t
, default:nil
) - The second color that is alternating. (Required) If second_band_color is also set, this field takes precedence.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Sheets.V4.Model.BandingProperties{ firstBandColor: GoogleApi.Sheets.V4.Model.Color.t() | nil, firstBandColorStyle: GoogleApi.Sheets.V4.Model.ColorStyle.t() | nil, footerColor: GoogleApi.Sheets.V4.Model.Color.t() | nil, footerColorStyle: GoogleApi.Sheets.V4.Model.ColorStyle.t() | nil, headerColor: GoogleApi.Sheets.V4.Model.Color.t() | nil, headerColorStyle: GoogleApi.Sheets.V4.Model.ColorStyle.t() | nil, secondBandColor: GoogleApi.Sheets.V4.Model.Color.t() | nil, secondBandColorStyle: GoogleApi.Sheets.V4.Model.ColorStyle.t() | nil }