maze-project
Show / Hide Table of Contents

Class MazeGridCellTappedEventArgs

The MazeGridCellTappedEventArgs class contains the details of a cell tapped event

Inheritance
object
EventArgs
MazeGridCellTappedEventArgs
Inherited Members
EventArgs.Empty
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 MazeGridCellTappedEventArgs : EventArgs

Constructors

MazeGridCellTappedEventArgs(CellFrame, int)

Constructor

Declaration
public MazeGridCellTappedEventArgs(CellFrame cellFrame, int numberTaps)
Parameters
Type Name Description
CellFrame cellFrame

Cell frame

int numberTaps

Number of taps

Properties

Cell

The cell frame that was tapped

Declaration
public CellFrame Cell { get; }
Property Value
Type Description
CellFrame

Cell frame

Column

The display column that was tapped

Declaration
public int Column { get; }
Property Value
Type Description
int

Display column

NumberTaps

The number of taps that were made

Declaration
public int NumberTaps { get; }
Property Value
Type Description
int

Number of taps

Row

The display row that was tapped

Declaration
public int Row { get; }
Property Value
Type Description
int

Display row

In this article
Back to top Generated by DocFX