Function TParagraph.NextLine(lin:Integer) : Boolean

Unit: WPRTEDefs
Class: WPRTEDefs.TParagraph

Parameters

  • lin:Integer

Returns

The type of the result value is Boolean.

Description

NextLine is used to locate the following line after the given line. Please use it to replace WPTools 4 code like this if lin^.next>nil then begin lin:=lin^.next ... end; --> if par.NextLine(nil) then begin ... end;