Gets or sets a value indicating whether this LinkClickEventArgs is handled.

Namespace: FirstFloor.Documents
Assembly: FirstFloor.Documents (in FirstFloor.Documents.dll) Version: 2.5.0.0 (2.5.1.0)

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);
}

Field Value

true if handled; otherwise, false.

Remarks

When this property is set, a link navigation operation has been performed. Please note that setting Handled to true does not prevent the LinkClick event from being raised (as is the case with routed events in Silverlight).

See Also