Accessing the Internal List & Label Job Handle

Valid from List & Label 9
The property hJob (for the OCX and VCL) was uniformly re-named handle. You can access the internally used List & Label Job handle through this property:

OCX / VCL:
ListLabel LL = new ListLabel();
int handle = LL.Handle;


.NET:

ListLabel LL = new ListLabel();
int handle = LL.Core.Handle;




IDKBTE000527 KBTE000527