Skip to main content

RowEventArgs Class

Definition

Assembly:Avalonia.Controls.TreeDataGrid
Package:Avalonia.Controls.TreeDataGrid

Provides a base class for events related to row operations in a TreeDataGrid.

public class RowEventArgs

Inheritance: EventArgs -> RowEventArgs

Derived types:RowEventArgs<TRow>

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

NameDescription
CreateNo summary available.

Create Method

public Avalonia.Controls.Models.TreeDataGrid.RowEventArgs<TRow><T> Create<T>(T row)

Parameters

row T

Type Parameters

T

Returns

Avalonia.Controls.Models.TreeDataGrid.RowEventArgs<TRow><T>

Properties

NameDescription
RowGets 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.