Class MazeGridCellTappedEventArgs
The MazeGridCellTappedEventArgs class contains the details of a cell tapped event
Inherited Members
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 |