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 location = (0, 0), row span = 3 and column span = 2 specifies the following cells: x x [ x x x ]
Constructors
- TableRange({int? columnSpan, TableCellLocation? location, int? rowSpan})
- 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
- location ↔ TableCellLocation?
-
The starting location of the table range.
getter/setter pair
- 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
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