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!

TypeDescriptor Refresh Event

Occurs when Refresh XXX is raised for a component.

The following declaration shows the syntax for a method that handles the Refresh event.

[Visual Basic]
Private Sub TypeDescriptorName_Refresh( _
   ByVal sender As Object, _
   ByVal e As RefreshEventArgs _
)
[C#]
private void TypeDescriptorName_Refresh(
   object sender,
   RefreshEventArgs e
);
[C++]
private: void TypeDescriptorName_Refresh(
   Object* sender,
   RefreshEventArgs* e
);
[JScript]
private TypeDescriptorName_Refresh(
   sender : Object,
   e : RefreshEventArgs
);

Parameters

sender
The source of the event.
e
A RefreshEventArgs that contains the event data. The following RefreshEventArgs properties provide information specific to this event.
Property Description
ComponentChanged
Gets the component that has changed its properties, events, or extenders.
TypeChanged
Gets the type that has changed its properties, or events.

See Also

TypeDescriptor Class | TypeDescriptor MembersTopic | System.ComponentModel Namespace