Member variable AutomationObject():interfaceName Foundation
Name of the COM interface used to connect to the COM/ActiveX object.
This instance variable contains the name of the interface via which the AutomationObject is connected to the COM/ActiveX component.
#pragma library( "ascom10.lib" )
PROCEDURE main()
LOCAL oWord, oExcel
oWord := CreateObject( "Word.Application" )
oExcel := CreateObject( "Excel.Application" )
? oWord:InterfaceName // -> "_Application"
? oExcel:InterfaceName // -> "_Application"
oWord:quit()
oExcel:quit()
RETURN
If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.