google_api_sheets v0.5.0 GoogleApi.Sheets.V4.Model.InsertDimensionRequest View Source
Inserts rows or columns in a sheet at a particular index.
Attributes
inheritFromBefore
(type:boolean()
, default:nil
) - Whether dimension properties should be extended from the dimensions before or after the newly inserted dimensions. True to inherit from the dimensions before (in which case the start index must be greater than 0), and false to inherit from the dimensions after.For example, if row index 0 has red background and row index 1 has a green background, then inserting 2 rows at index 1 can inherit either the green or red background. If
inheritFromBefore
is true, the two new rows will be red (because the row before the insertion point was red), whereas ifinheritFromBefore
is false, the two new rows will be green (because the row after the insertion point was green).range
(type:GoogleApi.Sheets.V4.Model.DimensionRange.t
, default:nil
) - The dimensions to insert. Both the start and end indexes must be bounded.
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.InsertDimensionRequest{
inheritFromBefore: boolean(),
range: GoogleApi.Sheets.V4.Model.DimensionRange.t()
}
t() :: %GoogleApi.Sheets.V4.Model.InsertDimensionRequest{ inheritFromBefore: boolean(), range: GoogleApi.Sheets.V4.Model.DimensionRange.t() }
Link to this section Functions
decode(value, options) View Source
Unwrap a decoded JSON object into its complex fields.