TransformReport Method

Transform XFF or XML (XFRX) to output.

XFRX#INIT
Object.TransformReport(toXFF [, tlSummary [, tlPlain [, tnPageNo]]])
XFRX#LISTENER
Object.TransformReport(toXFF)

Parameters

toXFF

 Instance of XFRX#DRAW or XFRX#XML object.

tlSummary

 Suppresses detail line printing so that only totals and subtotals print.

This parameter is ignored.

tlPlain

 Suppresses page headings except at the beginning of the report.

tnPageNo

 Specify page wich will be tramsformed. If you don't specify value, then will be transforms all pages.

Remarks

Applies To: XFRX#INIT, XFRX#LISTENER

Examples

LOCAL m.loSession, m.loXFF, m.lnRetVal
m.loSession= xfrx("XFRX#INIT")
m.loXFF = xfrx("XFRX#DRAW")
IF m.loXFF.openDocument("output.xff")
   m.lnRetVal = m.loSession.SetParams("output.pdf",,,,,,"PDF")
   IF m.lnRetVal = 0
      m.loSession.TransformReport(m.loXFF)
   ENDIF
ENDIF