class Google::Apis::SlidesV1::Table

A PageElement kind representing a table.

Attributes

columns[RW]

Number of columns in the table. Corresponds to the JSON property `columns` @return [Fixnum]

horizontal_border_rows[RW]

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. Corresponds to the JSON property `horizontalBorderRows` @return [Array<Google::Apis::SlidesV1::TableBorderRow>]

rows[RW]

Number of rows in the table. Corresponds to the JSON property `rows` @return [Fixnum]

table_columns[RW]

Properties of each column. Corresponds to the JSON property `tableColumns` @return [Array<Google::Apis::SlidesV1::TableColumnProperties>]

table_rows[RW]

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. Corresponds to the JSON property `tableRows` @return [Array<Google::Apis::SlidesV1::TableRow>]

vertical_border_rows[RW]

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. Corresponds to the JSON property `verticalBorderRows` @return [Array<Google::Apis::SlidesV1::TableBorderRow>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 3721
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/slides_v1/classes.rb, line 3726
def update!(**args)
  @columns = args[:columns] if args.key?(:columns)
  @horizontal_border_rows = args[:horizontal_border_rows] if args.key?(:horizontal_border_rows)
  @rows = args[:rows] if args.key?(:rows)
  @table_columns = args[:table_columns] if args.key?(:table_columns)
  @table_rows = args[:table_rows] if args.key?(:table_rows)
  @vertical_border_rows = args[:vertical_border_rows] if args.key?(:vertical_border_rows)
end