Class CellStatus
The CellStatus class represents the status associated with a maze cell selection
Inherited Members
Namespace: Maze.Maui.App
Assembly: Maze.Maui.App.dll
Syntax
public class CellStatus
Constructors
CellStatus()
Constructor
Declaration
public CellStatus()
Properties
ContainsFinish
Indicates whether the selection contains a finish cell
Declaration
public bool ContainsFinish { get; set; }
Property Value
| Type | Description |
|---|---|
| bool | Boolean |
ContainsStart
Indicates whether the selection contains a start cell
Declaration
public bool ContainsStart { get; set; }
Property Value
| Type | Description |
|---|---|
| bool | Boolean |
ContainsWall
Indicates whether the selection contains a wall
Declaration
public bool ContainsWall { get; set; }
Property Value
| Type | Description |
|---|---|
| bool | Boolean |
IsAllWalls
Indicates whether the selection contains all wall cells
Declaration
public bool IsAllWalls { get; set; }
Property Value
| Type | Description |
|---|---|
| bool | Boolean |
IsEmpty
Indicates whether the selection contains all empty cells
Declaration
public bool IsEmpty { get; }
Property Value
| Type | Description |
|---|---|
| bool | Boolean |
IsFinish
Indicates whether the selection is the finish cell
Declaration
public bool IsFinish { get; }
Property Value
| Type | Description |
|---|---|
| bool | Boolean |
IsSingleCell
Indicates whether the selection is a single cell
Declaration
public bool IsSingleCell { get; set; }
Property Value
| Type | Description |
|---|---|
| bool | Boolean |
IsStart
Indicates whether the selection is the start cell
Declaration
public bool IsStart { get; }
Property Value
| Type | Description |
|---|---|
| bool | Boolean |