Versions Compared

Key

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

...

You can prevent individual report bands from printing by calling skipBands() methods of the XFRXSession object. A parameter of this method is a string containing a comma delimited list of bands that will be skipped. The bands are represented by codes as stated in the following table:

 

BandCode
TitleT
Page headerH
Column headerCH
Group n headerGHn
DetailD
Group n footerGFn
Column footerCF
Page footerF
SummaryS

Example:
loSession.skipBands("H,GH1,GF3,S")

...