CellSpanMode class

Content-based cell merging. The engine compares adjacent cell values and visually merges cells with identical content. See engine/src/span.rs. Spans never cross fixed/frozen/pinned boundaries or subtotal rows.

NONE (0): No spanning. FREE (1): Expand in all directions (up/down/left/right). BY_ROW (2): Vertical spanning only. Left-column dependency: adjacent left cells must also match. BY_COLUMN (3): Horizontal spanning only. No above-cell dependency. ADJACENT (4): Either row OR column spanning (whichever matches). HEADER_ONLY (5): Only span in fixed/frozen cells, not data cells. SPILL (6): Text spills right into empty adjacent cells. GROUP (7): Like SPILL but only on subtotal rows.

Properties

hashCode int
The hash code for this object.
no setterinherited
name String
This enum's name, as specified in the .proto file.
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value int
This enum's integer value, as specified in the .proto file.
finalinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
Returns this enum's name or the value if names are not represented.
inherited

Operators

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

Static Methods

valueOf(int value) CellSpanMode?