IBM Lotus Symphony
|
This section provides an example to print the methods, interfaces, and properties of a Universal Network Objects (UNO) component.
Sub Main Set oDoc = StarDesktop.CurrentComponent MsgBox oDoc.dbg_methods 'Methods of this object. MsgBox oDoc.dbg_supportedInterfaces 'Interfaces of this object. MsgBox oDoc.dbg_properties 'Properties of this object. End Sub