Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Return current page of output.


Code Block
Object.nPageNo=number

Remarks

Applies To: XFRX#INIT, XFRX#LISTENER

XFRX version: 17.0.1

...

Examples

Code Block
m.loXFRX = EVALUATE([xfrx("XFRX#INIT")])
m.lnRetVal = m.loXFRX.SetParams("output.pdf",,,,,,"PDF")
IF m.lnRetVal = 0
   m.loXFRX.ProcessReport("report1")
   ?m.loXFRX.nPageNo
   m.loXFRX.ProcessReport("report2")            
   ?m.loXFRX.nPageNo
ELSE
   ? m.lnRetVal, m.loSession.ErrorMessage(m.lnRetVal)
ENDIF
RELE m.loXFRX