Print Options: Suppress Page Information in the Options Dialog

Valid from List & Label 6
To suppress the page information in the print options dialog, use the following procedure:
...
<Print(WithBox)Start call>
...
LlPrintSetOption(hllJob, LL_PRNOPT_PAGE, LL_PAGE_HIDE)
LlPrintSetOption(hllJob, LL_PRNOPT_PAGE, 1)


If you are using the .NET component with databinding, you just have to handle the “DefinePrintOptions” event and include the following line within the handler:

LL.Core.LlPrintSetOption(LlPrintOption.Page, LlConstants.PageHide);


Using VCL/OCX the code reads:

LL.LlPrintSetOption(LL_PRNOPT_PAGE, LL_PAGE_HIDE);
IDKBTE000532 KBTE000532