Gets or sets a value that indicates whether the event handler has completely handled the event or whether the Grid should continue its own processing.

Namespace: Dapfor.Net.Ui
Assembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)

Syntax

C#
public bool Handled { get; set; }
Visual Basic
Public Property Handled As Boolean
	Get
	Set
Visual C++
public:
property bool Handled {
	bool get ();
	void set (bool value);
}
F#
member Handled : bool with get, set

Property Value

Type: Boolean
true if the event has been handled; otherwise, false.

See Also