RpRDDTable:WhileExpression Access/Assign

<< Click to Display Table of Contents >>

Navigation:  RpRDDTable Class >

RpRDDTable:WhileExpression Access/Assign

Previous pageReturn to chapter overviewNext page
Type        String

Purpose

To get/set an optional expression used to implement a print while condition.  Records are included into the section until the while expression returns FALSE (or there is no more records to process). This must be a valid expression or an empty string ("") to clear the while condition. This access/assign is only valid for the first table in a data source.

Example

// keep producing the report until you find

// a name that begins with "H" or greater

 

oTable:WhileExpression := "Customer.Name < 'G' "