Hi,
I am playing with the standard report Output Model Information. In the report output, I would like to remove the number before the headings as seen below and keep the heading format so that it can be navigated from the table of content.
Has anyone done this before? Any feedback is much appreciated.
Regards,
Sam
----------------CODE SAMPLE------------------
Code defining the headings:
...
ooutfile.value.DefineF("REPORT_HD1", getString("TEXT21"), 14, Constants.C_BLACK, Constants.C_TRANSPARENT, Constants.FMT_LEFT | Constants.FMT_BOLD | Constants.FMT_TOCENTRY0, 0, 21, 0, 0, 0, 1);
ooutfile.value.DefineF("REPORT_HD2", getString("TEXT21"), 12, Constants.C_BLACK, Constants.C_TRANSPARENT, Constants.FMT_LEFT | Constants.FMT_BOLD | Constants.FMT_TOCENTRY1, 0, 21, 0, 0, 0, 1);
...Code generating the headings:
... ooutfile.value.OutputLnF(ocurrentmodel.Name(nloc),"REPORT_HD1"); ... ooutfile.value.OutputLnF(ocurrentobjdef.Type() + ": " + sobjname,"REPORT_HD2"); ...

Peggy Walther on
Hi Sam,
did you check the statements before that line:
IMHO the number is written to ooutfile directly (and not created by the format).
Kind regards,
Peggy