Skip to content

ScrollbackRow

Namespace: Hex1b

Assembly: Hex1b.dll

A single row stored in the scrollback buffer.

csharp
public readonly record struct ScrollbackRow : IEquatable<ScrollbackRow>

Implements

Constructors

ScrollbackRow(TerminalCell[], int, DateTimeOffset)

A single row stored in the scrollback buffer.

Parameters:

csharp
public ScrollbackRow(TerminalCell[] Cells, int OriginalWidth, DateTimeOffset Timestamp)

Properties

Cells

Returns: TerminalCell[]

csharp
public TerminalCell[] Cells { get; init; }

OriginalWidth

Returns: Int32

csharp
public int OriginalWidth { get; init; }

Timestamp

Returns: DateTimeOffset

csharp
public DateTimeOffset Timestamp { get; init; }

Released under the MIT License.