RowEventArgs Class
Definition
Provides a base class for events related to row operations in a TreeDataGrid.
public class RowEventArgs
Remarks
This base class provides non-generic access to selection change information, while the generic version Avalonia.Controls.Models.TreeDataGrid.RowEventArgs<T> provides strongly-typed access to the same information.
Methods
| Name | Description |
|---|---|
| Create | No summary available. |
Create Method
public Avalonia.Controls.Models.TreeDataGrid.RowEventArgs<TRow><T> Create<T>(T row)
Parameters
row T
Type Parameters
T
Returns
Properties
| Name | Description |
|---|---|
| Row | Gets the row associated with this event. |
Row Property
Gets the row associated with this event.
public Avalonia.Controls.Models.TreeDataGrid.IRow Row { get; set; }
Value
An Avalonia.Controls.Models.TreeDataGrid.IRow instance representing the row involved in the event.