Share via


Handled Property

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Gets or sets a value that indicates the present state of the event handling for a particular routed event as it travels the route.

Namespace:  Microsoft.SPOT
Assembly:  Microsoft.SPOT.TinyCore (in Microsoft.SPOT.TinyCore.dll)

Syntax

'Declaration
Public Property Handled As Boolean
public bool Handled { get; set; }
public:
property bool Handled {
    bool get ();
    void set (bool value);
}
member Handled : bool with get, set
function get Handled () : boolean
function set Handled (value : boolean)

Property Value

Type: System. . :: . .Boolean
The present state of the event handling

Remarks

When setting this property: true if the routed event is to be marked handled; otherwise false. When reading this property: true if a class handler or some instance handler along the route has already marked this event handled; otherwise, false. Note that the default value is false.

.NET Framework Security

See Also

Reference

RoutedEventArgs Class

Microsoft.SPOT Namespace