回复 3楼Alice的帖子
斑竹,怎么给节加上边框,我用了帮助文档里的方法,当几个节以连续的方式插入时,想给其中一个节加上边框,左右边框没问题,但上下边框给前后节挡住了,怎么办怎么办?
我加边框代码的代码如下:
//设置当前节
tx.sectioncurrent = li_sectionid
//设置边框不环绕页面页脚
tx.PageBorderAttribute[15] = false //txPageBorderSurroundHeader
tx.PageBorderAttribute[16] = false //txPageBorderSurroundFooter
//设置边框方式为环绕文字,因为我的是连续节,在同一个A4页面可能有多个
tx.PageBorderAttribute[17] = true //txPageBorderMeasureFromText
//设置边框宽度
tx.PageBorderAttribute[1] = 10
tx.PageBorderAttribute[2] = 10
tx.PageBorderAttribute[3] = 10
tx.PageBorderAttribute[4] = 10
//设置边框距离
tx.PageBorderAttribute[5] = 1000 //txPageBorderLeftDistance
tx.PageBorderAttribute[6] = 10 //txPageBorderTopDistance
tx.PageBorderAttribute[7] = 1000 //txPageBorderRightDistance
tx.PageBorderAttribute[8] = 10 //txPageBorderBottomDistance
//设置边框颜色为红色
tx.PageBorderAttribute[9] = rgb(255,0,0)
tx.PageBorderAttribute[10] = rgb(255,0,0)
tx.PageBorderAttribute[11] = rgb(255,0,0)
tx.PageBorderAttribute[12] = rgb(255,0,0) |