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!

PropertyValueUIHandler Delegate

The delegate to be added to IPropertyValueUIService. When this delegate is fired, PropertyValueUIItem objects may be added to valueUIItemList.

[Visual Basic]
Public Delegate Sub PropertyValueUIHandler( _
   ByVal component As Object, _
   ByVal propDesc As PropertyDescriptor, _
   ByVal valueUIItemList As ObjectList _
)
[C#]
public delegate void PropertyValueUIHandler(
   object component,
   PropertyDescriptor propDesc,
   ObjectList valueUIItemList
);
[C++]
public __gc __delegate void PropertyValueUIHandler(
   Object* component,
   PropertyDescriptor* propDesc,
   ObjectList* valueUIItemList
);

[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 PropertyValueUIHandler delegate declaration.

The component that owns the property.
The property that being queried.
PropertyValueUIItem objects may be added to this list by objects that implement this handler.

Remarks

[To be supplied.]

Requirements

Namespace: System.Drawing.Design

Assembly: System.Drawing.dll

See Also

System.Drawing.Design Namespace