Component Description Changed Handler 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)
Assembly: CapeOpen (in CapeOpen.dll) Version: 1.0.0.0 (1.0.0.0)
C#
[ComVisibleAttribute(false)]
public delegate void ComponentDescriptionChangedHandler(
Object sender,
DescriptionChangedEventArgs args
)VB
<ComVisibleAttribute(false)>
Public Delegate Sub ComponentDescriptionChangedHandler (
sender As Object,
args As DescriptionChangedEventArgs
)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.