Fired when the selected property is changed.
![]() | Type | Description |
The SelChange event notifies your application that user changes the selection. The SelChange event is not called when the control browses a new object using the Select method. The SelectedProperty property gets the selected property. The Name property gets the property's name. The Value property gets the property's value.
The following sample prints the name and the type of the selected property ( for instance, the sample is useful to find out the type of the property selected, when you need to include or exclude properties using the IncludeProperty event):
Private Sub PropertiesList1_SelChange() Debug.Print "You have selected the """ & PropertiesList1.SelectedProperty.Name & """. The type for it is: " & PropertiesList1.SelectedProperty.Type End Sub