14 lines
168 B
ObjectPascal
14 lines
168 B
ObjectPascal
|
|
uses System;
|
||
|
|
|
||
|
|
type
|
||
|
|
[System.Console.WindowLeft]
|
||
|
|
MyClassAttr = class
|
||
|
|
a : integer;
|
||
|
|
public fA : string;
|
||
|
|
public property Prop : integer read a write a;
|
||
|
|
end;
|
||
|
|
|
||
|
|
|
||
|
|
begin
|
||
|
|
|
||
|
|
end.
|