Load an array with the names of every column in a dwTag(s): Datawindow
About cookies on this site
We use cookies to collect and analyze information on site performance and usage,
to provide social media features and to enhance and customize content and advertisements.
int colNum, numCols
string colName[]
numCols = Integer(dw_control.Describe("Datawindow.Column.Count"))
FOR colNum = 1 TO numCols
// Get Column Name with describe
colName[colNum] = dw_control.Describe("#" + String(colNum) + ".name")
NEXT