'Declaration Public Function SplitRef( _ ByVal splitOptions As TextSplitOptions, _ ByRef rest As TextLayout _ ) As SplitResult
public SplitResult SplitRef( TextSplitOptions splitOptions, ref TextLayout rest )
Parameters
- splitOptions
- Options controlling how text is split.
- rest
- Recipient for the text that did not fit in the current bounds. 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.