PreviousNextIndex

UNDERLINE statement

Underlines a field or variable, using the next display line for the underline.

Note: Does not apply to SpeedScript programming.
Syntax

UNDERLINE [ STREAM stream | STREAM-HANDLE handle ] 
           field ... [ frame-phrase ] 

STREAM stream
STREAM-HANDLE handle
field
frame-phrase
Example

This procedure produces a report of Customer records, categorized by State. When the last Customer for a certain state has been displayed (determined by the LAST-OF function), the UNDERLINE statement underlines the State field.

r-under1.p
FOR EACH Customer NO-LOCK BREAK BY Customer.State WITH USE-TEXT: 
  DISPLAY Customer.State Customer.CustNum Customer.Name. 
  IF LAST-OF(Customer.State) THEN UNDERLINE Customer.State. 
END. 

Notes
See also

DEFINE STREAM statement, Frame phrase, Stream object handle


OpenEdge Release 10.2B
Copyright © 2009 Progress Software Corporation
PreviousNextIndex