maze-project
Show / Hide Table of Contents

Class CellFrame

The CellFrame class represents a grid cell frame

Inheritance
object
CellFrame
Namespace: Maze.Maui.Controls.InteractiveGrid
Assembly: Maze.Maui.Controls.dll
Syntax
public class CellFrame : Border

Constructors

CellFrame(int, int)

Constructor

Declaration
public CellFrame(int row, int column)
Parameters
Type Name Description
int row

Row index within the grid definition

int column

Column index within the grid definition

Properties

Column

The column index of the cell within the grid definition

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

Column index

DisplayColumn

The display column of the cell within the grid display, accounting for any header rows and columns

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

Display column

DisplayRow

The display row of the cell within the grid display, accounting for any header rows and columns

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

Display row

Row

The row index of the cell within the grid definition

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

Row index

Methods

IsDisplayPosition(int, int)

Checks whether the cell is associated with a given display position

Declaration
public bool IsDisplayPosition(int displayRow, int displayColumn)
Parameters
Type Name Description
int displayRow

Display row

int displayColumn

Display column

Returns
Type Description
bool
In this article
Back to top Generated by DocFX