'Declaration Public Function SplitAndBalanceRef( _ ByVal pageAreas() As PageSplitArea, _ ByVal splitOptions As TextSplitOptions, _ ByRef rest As TextLayout _ ) As SplitResult
public SplitResult SplitAndBalanceRef( PageSplitArea[] pageAreas, TextSplitOptions splitOptions, ref TextLayout rest )
Parameters
- pageAreas
- The array of additional page areas that can be used to layout the text.
- splitOptions
- Options controlling how text is split.
- rest
- Recipient for the text that did not fit in the current bounds and additional areas. If null, a new instance will be created and assigned to this parameter. If non-null, that TextLayout instance will be filled with the text that did not fit. When rendering large blocks of text, this improves performance by avoiding the need to initialize a new instance of a TextLayout for each split.
Return Value
A value indicating the result of splitting the current text layout.