TableRange class

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 table cell location = (table_start_location, row = 0, column = 0), row span = 3 and column span = 2 specifies the following cells: x x [ x x x ]

Constructors

TableRange({int? columnSpan, int? rowSpan, TableCellLocation? tableCellLocation})
TableRange.fromJson(Map json_)

Properties

columnSpan int?
The column span of the table range.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
rowSpan int?
The row span of the table range.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
tableCellLocation TableCellLocation?
The cell location where the table range starts.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited