Table of Contents

Class GroupGridRowOperationEventArgs

Namespace
Avalonia.Controls
Assembly
Tripous.Avalonia.Controls.dll

Provides data for a group grid row operation.

public class GroupGridRowOperationEventArgs : EventArgs
Inheritance
GroupGridRowOperationEventArgs
Inherited Members
Extension Methods

Constructors

GroupGridRowOperationEventArgs(int, object)

Initializes a new instance of the GroupGridRowOperationEventArgs class.

public GroupGridRowOperationEventArgs(int RowIndex, object Row)

Parameters

RowIndex int

The adapter row index.

Row object

The source row.

Properties

Cancel

Gets or sets a value indicating whether the operation is canceled.

public bool Cancel { get; set; }

Property Value

bool

Row

Gets the source row.

public object Row { get; }

Property Value

object

RowIndex

Gets the adapter row index.

public int RowIndex { get; }

Property Value

int