property PropertiesList.Interfaces (Object as IUnknown FAR*) as String
Retrieves the interfaces implemented by the object.

TypeDescription
Object as IUnknown FAR* An object being queried.
String A string expression that indicates the list of the interfaces implemented by the object.

The following sample prints the interfaces implemented by the extended control object:

Private Sub Form_Load()
    MsgBox PropertiesList1.Interfaces(PropertiesList1)
End Sub


The following sample prints the interfaces implemented by the object itself:

Private Sub Form_Load()
    MsgBox PropertiesList1.Interfaces(PropertiesList1.Object)
End Sub