Table of Contents

Struct CellChange

Namespace
SharpConsoleUI.Layout
Assembly
SharpConsoleUI.dll

Represents a change to a single cell in the buffer.

public readonly record struct CellChange : IEquatable<CellChange>
Implements
Inherited Members

Constructors

CellChange(int, int, Cell)

Represents a change to a single cell in the buffer.

public CellChange(int X, int Y, Cell Cell)

Parameters

X int
Y int
Cell Cell

Properties

Cell

public Cell Cell { get; init; }

Property Value

Cell

X

public int X { get; init; }

Property Value

int

Y

public int Y { get; init; }

Property Value

int