Delegate handler that will be fired when an icon on PropertyValueUIItem is double clicked. Add a delegate of this type to the object that you want to be notified when the icon is double clicked.
[Visual Basic] Public Delegate Sub PropertyValueUIItemInvokeHandler( _ ByVal context As ITypeDescriptorContext, _ ByVal descriptor As PropertyDescriptor, _ ByVal invokedItem As PropertyValueUIItem _ ) [C#] public delegate void PropertyValueUIItemInvokeHandler( ITypeDescriptorContext context, PropertyDescriptor descriptor, PropertyValueUIItem invokedItem ); [C++] public __gc __delegate void PropertyValueUIItemInvokeHandler( ITypeDescriptorContext* context, PropertyDescriptor* descriptor, PropertyValueUIItem* invokedItem );
[JScript] In JScript, you can use the delegates in the NGWS frameworks, but you cannot define your own.
The declaration of your event-handling method must have the same parameters as the PropertyValueUIItemInvokeHandler delegate declaration.
[To be supplied.]
Namespace: System.Drawing.Design
Assembly: System.Drawing.dll
System.Drawing.Design Namespace | ITypeDescriptorContext | PropertyValueUIItem | IPropertyValueUIService