-- [求助] 需要将表格顺时针90度旋转,并且在这个纸张上面打印二个表格
[求助] 需要将表格顺时针90度旋转,并且在这个纸张上面打印二个表格,求前辈帮忙
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 \'设置下边距
Dim tb As Table = Tables("分箱打印")
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.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
doc.Preview()