Type Default Value Read Only Description
[C#]
HtmlBreakMethodType

[Visual Basic]
HtmlBreakMethodType
CumulativeCohesion No The page break logic for HTML.

 

   

Notes
 

This property specifies the page breaking algorithm.

The HtmlBreakMethodType enumeration can take any of the following values:

  • CumulativeCohesion – uses the cumulative cohesion of all objects occupying each horizontal line/vertical position.
  • MaximumCohesion – uses the maximum cohesion among objects occupying each horizontal line/vertical position.

Each rendered objects in an HTML page has associated cohesion. Text, images, and form controls converted to form fields have high cohesion whereas simple lines and shapes have low cohesion.

Page breaks are selected at positions with low cohesion.

Use MaximumCohesion when you want to break at positions where there are a lot of low-cohesion objects and no high-cohesion objects.

 

   

Example
 

None.