打印两次的话,重复执行两次即可,加粗的部分,用于设置两次打印之间的间距:
Dim doc As New PrintDoc
doc.PageSetting.Width = 80 '纸张宽度为100毫米
doc.PageSetting.Height = 240 '纸张高度为120毫米
Doc.PageSetting.LeftMargin = 5 '设置左边距
Doc.PageSetting.RightMargin = 5 '设置右边距
Doc.PageSetting.TopMargin = 5 '设置上边距
Doc.PageSetting.BottomMargin = 5 '设置下边距
For i As Integer = 1 To 2
Dim tb As Table = Tables("表A")
Dim prs As Integer = 10 '每页20行
For p As Integer = 0 To math.Ceiling(tb.Rows.Count / prs) - 1
Dim rt As New prt.RenderTable
rt.Style.Spacing.Top = 6
rt.Style.Gridlines.All = New prt.Linedef(Color.Gray)
rt.CellStyle.Spacing.All = 0.5
For c As Integer = 0 To tb.Cols.Count - 1
rt.Cells(0,c).Text = tb.Cols(c).Name
Next
For r As Integer = p * prs To math.min(tb.Rows.Count - 1,( p + 1) * prs - 1)
For c As Integer = 0 To tb.Cols.Count - 1
rt.Cells(r - p * prs + 1, c).Text = tb.rows(r)(c)
Next
Next
If p = math.Ceiling(tb.Rows.Count / prs) - 1 '如果是最后一页
For r As Integer = tb.Rows.Count To ( p + 1) * prs - 1 '补空行
rt.Rows.Count = rt.Rows.Count + 1
rt.Rows(rt.Rows.count -1)(0).text = " "
Next
Else
rt.BreakAfter = prt.BreakEnum.Page '否则换页
End If
doc.Body.Children.Add(rt)
Next
Next
doc.Preview()