Interface IUIGridCell
A component hosted by a IUIGrid that represents a cell in a flexible grid.
Namespace: DevToys.Api
Assembly: DevToys.Api.dll
Syntax
public interface IUIGridCell
Properties
Child
Gets the child element to display in the cell.
Declaration
IUIElement? Child { get; }
Property Value
Type | Description |
---|---|
IUIElement |
Column
Gets the column alignment of the cell.
Declaration
int Column { get; }
Property Value
Type | Description |
---|---|
int |
ColumnSpan
Gets a value that indicates the total number of columns that the cell content spans within the parent grid. Default is 1.
Declaration
int ColumnSpan { get; }
Property Value
Type | Description |
---|---|
int |
Row
Gets the row alignment of the cell.
Declaration
int Row { get; }
Property Value
Type | Description |
---|---|
int |
RowSpan
Gets a value that indicates the total number of rows that the cell content spans within the parent grid. Default is 1.
Declaration
int RowSpan { get; }
Property Value
Type | Description |
---|---|
int |
Events
ChildChanged
Raised when Child is changed.
Declaration
event EventHandler? ChildChanged
Event Type
Type | Description |
---|---|
EventHandler |
ColumnChanged
Raised when Column is changed.
Declaration
event EventHandler? ColumnChanged
Event Type
Type | Description |
---|---|
EventHandler |
ColumnSpanChanged
Raised when ColumnSpan is changed.
Declaration
event EventHandler? ColumnSpanChanged
Event Type
Type | Description |
---|---|
EventHandler |
RowChanged
Raised when Row is changed.
Declaration
event EventHandler? RowChanged
Event Type
Type | Description |
---|---|
EventHandler |
RowSpanChanged
Raised when RowSpan is changed.
Declaration
event EventHandler? RowSpanChanged
Event Type
Type | Description |
---|---|
EventHandler |