ddwwhh Posted March 15, 2015 Share Posted March 15, 2015 I have a multipage document based on an order which includes the number of sheets. I am using overflow pages off a template to create the additional output pages. In order to include a 2D barcode(DataMatrix) on each output sheet for my inserting equipment I need to know the Page Number I am currently about to create so I can include Page Number and whether of not it is the end of the order in the barcode. How do I access the current output page? Quote Link to comment Share on other sites More sharing options...
step Posted March 16, 2015 Share Posted March 16, 2015 I think these are the properties that would help you: FusionPro.Composition.totalPages will tell you how many pages are in a specific record. FusionPro.Composition.currentPageNumber will give you the current page of a specific record. In order to determine if you're at the end of an order you'd just do something like this: if (FusionPro.Composition.currentPageNumber == FusionPro.Composition.totalPages){ [i]//Barcode logic[/i] } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.