Foxtable(狐表)用户栏目专家坐堂 → [求助]窗体打印单据的时候如何加上页码??


  共有2165人关注过本帖树形打印复制链接

主题:[求助]窗体打印单据的时候如何加上页码??

帅哥,在线噢!
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110528 积分:562524 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2017/6/8 15:26:00 [显示全部帖子]

参考:http://www.foxtable.com/webhelp/scr/1197.htm


Dim doc As PrintDoc = e.Form.GernatePrintDoc()

Dim rt As prt.RenderText 
rt = New prt.RenderText '设置文本对象的内容
rt.Text = "第[PageNo]页,共[PageCount]页" '设置文本内容
rt.Style.TextAlignHorz = prt.AlignHorzEnum.Right '靠右对齐
rt.Style.Borders.Top = New prt.LineDef(0.3, Color.Green) '设置底边框
'rt.Style.Padding.Bottom = 0.5 '底端内容缩进0.5毫米
rt.Style.FontSize = 8 '字体大小为8磅
Doc.PageFooter = rt 
doc.Preview()

 回到顶部