GoogleApi.Slides.V1.Model.TableRange (google_api_slides v0.24.0)

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.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

t()

@type t() :: %GoogleApi.Slides.V1.Model.TableRange{
  columnSpan: integer() | nil,
  location: GoogleApi.Slides.V1.Model.TableCellLocation.t() | nil,
  rowSpan: integer() | nil
}

Functions

decode(value, options)

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.