| The following configuration setting only applies to the Flow Layout. |
When generating documents in flow mode, it is impossible to set the coordinates of report elements explicitly. This means that sometimes page contents may appear higher than designed and therefore be pushed to the following page.
To eliminate this side effect, you may reduce spacing between report elements. If you encounter the described behaviour (the documnet contains more pages than expected), try setting the SpacingFactor configuration setting to a value less than 1.0. Keep decreasing the value until all page contents fit corresponding pages.
To change the spacing factor value, add the following lines to the <Extension> element corresponding to a particular renderer:
<Render> … <Extension Name="AWDOC" Type="Aspose.Words.ReportingServices.DocRenderer,Aspose.Words.ReportingServices"> <Configuration> <SpacingFactor>0.75</SpacingFactor> </Configuration> </Extension> </Render>
