1. To get a list of objects in the datawindow u can use either the dot notation:
<dw_control>.Object.DataWindow.Objects
or the describe method
<dw_control>.Describe("DataWindow.Objects"
This will return a tab separated list of names of objects in the datawindow.
2. I assume you want to know the tag property of the objects. This again you can get using either the dot notation
<dw_control>.Object.<object_name>.Tag
or using the describe method
<dw_control>.Describe("<object_name>.Tag"
If you want only for columns in the datawindow, you can use the type property for the object to figure out if it is a column (<dw_control>.Object.<object_name>.Type will return 'column' for a column object and so on)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.