property Property.Description as String

Specifies the property's description.

TypeDescription
String A string expression that indicates the property's description.

Use the Description property to get the property's description. The property's description describes briefly what a property does. By default, the ExPropertiesList control displays in its description window the description for selected property. Use DescriptionVisible property to hide the control's description window. The Name property gets the property's name. The Value property gets the property's value.

The following sample shows how to implement by yourself a description window ( to run the sample please include to your form a Label control ):

Private Sub PropertiesList1_SelChange()
    Label1 = PropertiesList1.SelectedProperty.Description
End Sub