(go to: table of contents, index, list of vms_lib, prev: GET_USERS_LANGUAGE, next: PUT_COMMON)
vms_lib.lp_lines() does not take any arguments.
Examples:
LP_LINES - Lines on Each Printer Page
Format:
30-SEP-1998 ZE.
lp_line_count = vms_lib.lp_lines ()
Returns:
Arguments:
>>> import vms_lib
>>> lp_line_count = vms_lib.lp_lines ()
>>> lp_line_count
66
$ DEFINE SYS$LP_LINES "_INVALID_"
>>> vms_lib.lp_lines ()
66
$ DEFINE SYS$LP_LINES "72"
>>> vms_lib.lp_lines ()
72
* don't forget to use '$ DEASSIGN SYS$LP_LINES' !
>>> vms_lib.lp_lines ('S')
Traceback (innermost last):
File "<stdin>", line 1, in ?
TypeError: function requires no arguments
>>>
(go to: table of contents,
index,
list of vms_lib,
prev: GET_USERS_LANGUAGE,
next: PUT_COMMON)