Table of Contents

Class GroupGridCellEditEventArgs

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

Provides data for group grid cell editing events.

public class GroupGridCellEditEventArgs : EventArgs
Inheritance
GroupGridCellEditEventArgs
Inherited Members
Extension Methods

Constructors

GroupGridCellEditEventArgs(GroupGridCell, object)

Initializes a new instance of the GroupGridCellEditEventArgs class.

public GroupGridCellEditEventArgs(GroupGridCell Cell, object Value)

Parameters

Cell GroupGridCell

The edited cell.

Value object

The edit value.

Properties

Cancel

Gets or sets a value indicating whether the operation should be canceled.

public bool Cancel { get; set; }

Property Value

bool

Cell

Gets the edited cell.

public GroupGridCell Cell { get; }

Property Value

GroupGridCell

ErrorMessage

Gets or sets the validation error message.

public string ErrorMessage { get; set; }

Property Value

string

Value

Gets or sets the edit value.

public object Value { get; set; }

Property Value

object