Description
Indicates whether the event should continue be routed to the listeners. Setting Handled to true will prevent the event from reaching any remaining listeners.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property Handled() As Boolean
|
| [C#] |
|---|
public bool Handled {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_Handled(); public: __property void set_Handled( bool );
|
| [Unmanaged C++] |
|---|
public: HRESULT get_Handled( VARIANT_BOOL * pRetVal ); public: HRESULT put_Handled( VARIANT_BOOL NewHandled );
|
| [Java] |
|---|
public bool getHandled(); public void setHandled( bool );
|
See Also