tb0347.pp 275 B

1234567891011121314151617
  1. {$mode objfpc}
  2. {$M+}
  3. type
  4. tenum = (te_first,te_second,te_third,te_fourth,te_fifth);
  5. tenumrange = te_second..te_fourth;
  6. tc1 = class
  7. public
  8. fe : tenumrange;
  9. published
  10. property enumrange : tenumrange read fe write fe;
  11. end;
  12. begin
  13. end.