home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Database / CLIPR503.W96 / LBLDEF.C_ / LBLDEF.C
Text File  |  1995-06-20  |  1KB  |  31 lines

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