数据窗口动态创建text,设置了边框。打印时该text边框不正确,why?
ls_modify = 'create text(band=header alignment="2" text="' + ls_factor_name + '" border="2" color="33554432" x="' + String(ll_x) + '" y="250" height="120" width="599" html.valueishtml="0" name=header_' + String(ll_factor_id) + '_t visible="1" font.face="Arial Black" font.height="-11" font.weight="400" font.family="0" font.pitch="2" font.charset="134" background.mode="1" background.color="536870912")'
ls_debug = dw_1.Modify(ls_modify)
----------------------------------
border="2" 也就是Box2,有黑色边框的。程序运行的时候也是有黑色边框的,
但是打印出来,该text的边框不对,变成像grid风格数据窗口的网格线(NoBorder)一样,浅、很细.
而且同时该数据窗口还有不是动态生成的text(border="2"),打印出来边框就正确,很黑,很明显。
why??