google_api_slides v0.5.1 GoogleApi.Slides.V1.Model.Table View Source
A PageElement kind representing a table.
Attributes
columns
(type:integer()
, default:nil
) - Number of columns in the table.horizontalBorderRows
(type:list(GoogleApi.Slides.V1.Model.TableBorderRow.t)
, default:nil
) - Properties of horizontal cell borders.A table's horizontal cell borders are represented as a grid. The grid has one more row than the number of rows in the table and the same number of columns as the table. For example, if the table is 3 x 3, its horizontal borders will be represented as a grid with 4 rows and 3 columns.
rows
(type:integer()
, default:nil
) - Number of rows in the table.tableColumns
(type:list(GoogleApi.Slides.V1.Model.TableColumnProperties.t)
, default:nil
) - Properties of each column.tableRows
(type:list(GoogleApi.Slides.V1.Model.TableRow.t)
, default:nil
) - Properties and contents of each row.Cells that span multiple rows are contained in only one of these rows and have a row_span greater than 1.
verticalBorderRows
(type:list(GoogleApi.Slides.V1.Model.TableBorderRow.t)
, default:nil
) - Properties of vertical cell borders.A table's vertical cell borders are represented as a grid. The grid has the same number of rows as the table and one more column than the number of columns in the table. For example, if the table is 3 x 3, its vertical borders will be represented as a grid with 3 rows and 4 columns.
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.Slides.V1.Model.Table{
columns: integer(),
horizontalBorderRows: [GoogleApi.Slides.V1.Model.TableBorderRow.t()],
rows: integer(),
tableColumns: [GoogleApi.Slides.V1.Model.TableColumnProperties.t()],
tableRows: [GoogleApi.Slides.V1.Model.TableRow.t()],
verticalBorderRows: [GoogleApi.Slides.V1.Model.TableBorderRow.t()]
}
t() :: %GoogleApi.Slides.V1.Model.Table{ columns: integer(), horizontalBorderRows: [GoogleApi.Slides.V1.Model.TableBorderRow.t()], rows: integer(), tableColumns: [GoogleApi.Slides.V1.Model.TableColumnProperties.t()], tableRows: [GoogleApi.Slides.V1.Model.TableRow.t()], verticalBorderRows: [GoogleApi.Slides.V1.Model.TableBorderRow.t()] }
Link to this section Functions
decode(value, options) View Source
Unwrap a decoded JSON object into its complex fields.