Gets or sets a Boolean value that determines whether this event has been handled. Namespace: Microsoft.EnterpriseManagement.UI
Assembly: Microsoft.EnterpriseManagement.UI.Extensibility (in microsoft.enterprisemanagement.ui.extensibility.dll)

Usage

Visual Basic
Dim instance As ObjectCommittingEventArgs
Dim value As Boolean

value = instance.Handled

instance.Handled = value

Syntax

Visual Basic
Public Property Handled As Boolean
C#
public bool Handled { get; set; }
C++
public:
property bool Handled {
		bool get ();
		void set (bool value);
}
J#
/** @property */
public boolean get_Handled ()

/** @property */
public void set_Handled (boolean value)
JScript
public function get Handled () : boolean

public function set Handled (value : boolean)

Property Value

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

Remarks

If the event is handled, the user interface framework does not commit any changes and stops processing the event.


Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP

Target Platforms

Windows Server 2008,Windows Server 2003,Windows Vista,Windows XP

See Also