ComponentDescriptionChangedHandler Delegate

Represents the method that will handle the changing of the description of a component.

Definition

Namespace: CapeOpen
Assembly: CapeOpen (in CapeOpen.dll) Version: 1.0.0.0 (1.0.0.0)
[ComVisibleAttribute(false)]
public delegate void ComponentDescriptionChangedHandler(
	Object sender,
	DescriptionChangedEventArgs args
)

Parameters

sender  Object
The PMC that is the source .
args  DescriptionChangedEventArgs
A DescriptionChangedEventArgs that provides information about the description change.

Remarks

When you create a ComponentNameChangedHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about delegates, see Events and Delegates.

See Also