google_api_slides v0.5.1 GoogleApi.Slides.V1.Model.TableRange View Source

A table range represents a reference to a subset of a table.

It's important to note that the cells specified by a table range do not necessarily form a rectangle. For example, let's say we have a 3 x 3 table where all the cells of the last row are merged together. The table looks like this:

 [             ]

A table range with location = (0, 0), row span = 3 and column span = 2 specifies the following cells:

  x     x 
 [ x    x    x ]

Attributes

  • columnSpan (type: integer(), default: nil) - The column span of the table range.
  • location (type: GoogleApi.Slides.V1.Model.TableCellLocation.t, default: nil) - The starting location of the table range.
  • rowSpan (type: integer(), default: nil) - The row span of the table range.

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Link to this section Types

Link to this type

t() View Source
t() :: %GoogleApi.Slides.V1.Model.TableRange{
  columnSpan: integer(),
  location: GoogleApi.Slides.V1.Model.TableCellLocation.t(),
  rowSpan: integer()
}

Link to this section Functions

Link to this function

decode(value, options) View Source
decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.