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