在DataWindow中画一根直线的函数
/*
函数:fun_draw_line_in_dw()
作者:沉默是金啊中
日期:2023-06-07
*/
string ls_modify=''
ls_modify+=' create line(band=detail '
ls_modify+=' x1="'+string(x1)+'" '
ls_modify+=' x2="'+string(x2)+'" '
ls_modify+=' y1="'+string(y1)+'" '
ls_modify+=' y2="'+string(y2)+'" '
ls_modify+=' pen.style="'+string(style)+'" '
ls_modify+=' pen.width="'+string(width)+'" '
ls_modify+=' pen.color="'+string(color)+'" '
ls_modify=dw_1.modify(ls_modify)
if ls_modify='' then
return true
else
return false
end if
页:
[1]