You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Consider a book where:
A chapter title page is on an odd page (right hand side)
Followed by a blank page (left hand side)
Followed by text on an odd page (right hand side)
addPage() does not allow to force the start of the chapter page to the next odd page number.
Describe the solution you'd like
enumPageNumber { odd, even }
addPage( startNext:PageNumber.odd )
Here, addPage injects blank pages as needed to achieve the desired effect.
Describe alternatives you've considered
I tried to get the current page count before inserting a new page. But the document hasn't been rendered yet. Thus, the actual page count is not accessible. And whether an additionally injected blank page is needed cannot be determined at coding time.
I may have overlooked an obvious solution to this problem, or an already existing API parameter.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Consider a book where:
addPage()
does not allow to force the start of the chapter page to the next odd page number.Describe the solution you'd like
Here,
addPage
injects blank pages as needed to achieve the desired effect.Describe alternatives you've considered
I tried to get the current page count before inserting a new page. But the document hasn't been rendered yet. Thus, the actual page count is not accessible. And whether an additionally injected blank page is needed cannot be determined at coding time.
I may have overlooked an obvious solution to this problem, or an already existing API parameter.
The text was updated successfully, but these errors were encountered: