ReadonlyisWhether the line is wrapped from the previous line.
ReadonlylengthThe length of the line, all call to getCell beyond the length will result
in undefined. Note that this may exceed columns as the line array may
not be trimmed after a resize, compare against Terminal.cols to
get the actual maximum length of a line.
Gets a cell from the line, or undefined if the line index does not exist.
Note that the result of this function should be used immediately after calling as when the terminal updates it could lead to unexpected behavior.
The character index to get.
Optionalcell: IBufferCell
Optional cell object to load data into for performance reasons. This is mainly useful when every cell in the buffer is being looped over to avoid creating new objects for every cell.
Gets the line as a string. Note that this is gets only the string for the line, not taking isWrapped into account.
OptionaltrimRight: boolean
Whether to trim any whitespace at the right of the line.
OptionalstartColumn: number
The column to start from (inclusive).
OptionalendColumn: number
The column to end at (exclusive).
Represents a line in the terminal's buffer.