Hi,
I'm having some difficulty finding the correct syntax to change the transparency property of the entire datawindow's band (detail band).
DW has no groups, just a standard grid datawindow listing excel-like rows.
If I do
dw_import.Modify("trade_date.transparency=50")
from powerscript, then only data column trade_date gets set the new rtansparency of 50 with no problems. However, there is twenty three data columns on the datawindow row (detail band), and I would like to set the entire row's, i.e. the whole detailed band, transparency to 50 and then 20 in two easy statements.
So I'm trying
dw_import.Modify("DataWindow.Detail.transparency=50")
dw_import.Modify("DataWindow.Detail.transparency=20")
No luck. Nothing happens. Also tried
dw_import.Modify("Detail.transparency=50")
dw_import.Modify("Detail.transparency=20")
and
dw_import.Modify("Detail.0.transparency=50")
dw_import.Modify("Detail.0.transparency=20")
and
dw_import.Modify("Detail.1.transparency=50")
dw_import.Modify("Detail.1.transparency=20")
Nothing. What am I missing?
Thanks