maze-project
Show / Hide Table of Contents

Class CellStatus

The CellStatus class represents the status associated with a maze cell selection

Inheritance
object
CellStatus
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

In this article
Back to top Generated by DocFX