GoogleApi.Slides.V1.Model.Table (google_api_slides v0.24.0)
View SourceA 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.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.Slides.V1.Model.Table{ columns: integer() | nil, horizontalBorderRows: [GoogleApi.Slides.V1.Model.TableBorderRow.t()] | nil, rows: integer() | nil, tableColumns: [GoogleApi.Slides.V1.Model.TableColumnProperties.t()] | nil, tableRows: [GoogleApi.Slides.V1.Model.TableRow.t()] | nil, verticalBorderRows: [GoogleApi.Slides.V1.Model.TableBorderRow.t()] | nil }