home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a009 / 5.ddi / SYS.LIF / LBLDEF.CH < prev    next >
Encoding:
Text File  |  1991-04-14  |  1.0 KB  |  27 lines

  1. /***
  2. *
  3. *   lbldef.ch
  4. *   Clipper 5.0 LABEL FORM system definitions.
  5. *   Copyright (c) 1990 Nantucket Corp.  All rights reserved.
  6. */
  7.  
  8. // Label array definitions
  9. #define LB_REMARK   1       // Character, remark from label file
  10. #define LB_HEIGHT   2       // Numeric, label height
  11. #define LB_WIDTH    3       // Numeric, label width
  12. #define LB_LMARGIN  4       // Numeric, left margin
  13. #define LB_LINES    5       // Numeric, lines between labels
  14. #define LB_SPACES   6       // Numeric, spaces between labels
  15. #define LB_ACROSS   7       // Numeric, number of labels across
  16. #define LB_FIELDS   8       // Array of Field arrays
  17.  
  18. #define LB_COUNT    8       // Numeric, number of label fields
  19.  
  20. // Field array definitions ( one array per field )
  21. #define LF_EXP      1       // Block, field expression
  22. #define LF_TEXT     2       // Character, text of field expression
  23. #define LF_BLANK    3       // Logical, compress blank fields, .T.=Yes .F.=No
  24.  
  25. #define LF_COUNT    3       // Numeric, number of elements in field array
  26.  
  27.