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
Properties
Cell
public Cell Cell { get; init; }
Property Value
X
public int X { get; init; }
Property Value
Y
public int Y { get; init; }