home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 26 / CD_ASCQ_26_1295.iso / vrac / leds.zip / README.1ST < prev    next >
Text File  |  1995-10-13  |  2KB  |  76 lines

  1. *========================================================*
  2. *BisonWare Led Digit Control V2.0 - Control Documentation*
  3. *========================================================*
  4.  
  5. Welcome to the new Bisonware LED Digit control.
  6.  
  7. The control allows you to add LED digits to you applications quickly.
  8. Multiple LED Digits may be used to create display panels.
  9.  
  10. Please try the sample program TESTLEDS for a sample of the usability.
  11.  
  12. If you wish to use the control then please register, go SWREG,
  13. UserID 100416,3553 to register this component for $10.00.
  14. You will receive a registered version by EMAIL.
  15.  
  16. If you have any questions of comments, then direct them to compuserve id
  17. 100416, 3553.
  18.  
  19. Thankyou for using BisonWare!
  20.  
  21. Watch out for more great BisonWare components in the future.
  22.  
  23.  
  24.  
  25. Installation
  26.  
  27. 1.  Copy the file into a directory of your choice
  28.  
  29. 2.  Add LEDS.DCU to the VCL library using OPTIONS▌INSTALL COMPONENTS from
  30.     the Delphi menu.
  31.  
  32. 3.  You can then use the LED Digit control in your programs
  33.     
  34.  
  35.  
  36. Special Properties
  37.  
  38. 1.  BackColor      : Set to indicate the background color (default = black)
  39.  
  40. 2.  SegmentColor   : Set to indicate the color of the segments on the LED digit
  41.                      (default = yellow)
  42.  
  43. 3.  MinValue       : Minimum allowable value for display (default = 0)
  44.  
  45. 4.  MaxValue       : Maximum allowable value for display (default = 9)
  46.  
  47. 5.  Value          : Integer value representing the display value (default = 0)
  48.  
  49. 6.  BlankWhenZero  : Boolean value indicating whether to display a zero or
  50.                      blank when the value is zero (default = false, i.e.
  51.                      display zero)
  52.  
  53. 7.  LEDDisplayType : Enumerated type which causes the digit to display a colon
  54.                      a decimal point or the value property. (useful for building
  55.                      panels, default = digit)
  56.                      
  57.  
  58.  
  59.  
  60.  
  61. Special Methods
  62.  
  63. 1.  Increment      : Increases the digit value by 1, if the value exceeds
  64.                      MaxValue then the digit rolls back to MinValue.
  65.  
  66. 2.  Decrement      : Decreases the digit value by 1, if the value drops below
  67.                      MinValue then the digit rolls forward to MaxValue.
  68.  
  69.  
  70.  
  71. Special Events
  72.  
  73. 1.  OnRollForward   : Event fired when Increment causes a rollover.
  74.  
  75. 2.  OnRollBackward  : Event fired when Decrement causes a rollover.
  76.