Forum Discussion
Know
23 days agoOccasional Contributor
rraghvani it has same application, but on the different dialog
Because as I mentioed, datagrid is not expose any cell, So I cannot use wValue to retrieve any value
torus
23 days agoFrequent Contributor
So something like this wouldn't work? (Note: all the code examples i list here are in Javascript).
var list = Aliases.Icad.dlgAECStylesManager.Item.SysListView32;
var rowCount = list.wItemCount;
for (var r = 0; r < rowCount; r++) {
for (var c = 0; c < 6; c++) {
Log.Message("Row " + r + ", Col " + c + ": " + list.wSubItem(r, c));
}
}
- Know23 days agoOccasional Contributor
cannot work because the datagrid object don't have propeties: wSubItem