|
We go through every page in the source document drawing a framed
copy of each page at a different position on our four-up document.
Every fourth page we add a new page into our destination document.
For i = 1 To theCount
theItem = i Mod 4
For i = 1 To theCount
Select Case i Mod 4
Case 1
theDst.Page = theDst.AddPage()
theDst.Rect.Position 10, theY
+ 10
Case 2
theDst.Rect.Position theX +
10, theY + 10
Case 3
theDst.Rect.Position 10, 10
Case 0
theDst.Rect.Position theX +
10, 10
End Select
theDst.AddImage theSrc, i
theDst.FrameRect
Next
|
|
|