NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

PropertyValueUIItemInvokeHandler Delegate

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.

Parameters [Visual Basic, C#, C++]

The declaration of your event-handling method must have the same parameters as the PropertyValueUIItemInvokeHandler delegate declaration.

The ITypeDescriptorContext for the property that the item is on.
The property that was double clicked.
The PropertyValueUIItem that was double clicked.

Remarks

[To be supplied.]

Requirements

Namespace: System.Drawing.Design

Assembly: System.Drawing.dll

See Also

System.Drawing.Design Namespace | ITypeDescriptorContext | PropertyValueUIItem | IPropertyValueUIService