Delphi-Quellcode:
//interface-Teil
TMeineKlasse = class
private
fBWStellung: Integer;
procedure setBWStellung(value: Integer);
function getBWStellung:Integer;
public
OnValueChange :TNotifyEvent;
Property BWStellung :Integer read getBWStellung write SetBWStellung;
end;
//implementation-Teil
procedure TMeineKlasse.setBWStellung(value: Integer);
begin
if (fBWStellung = value) then Exit;
fBWStellung := value;
if Assigned(OnValueChange) then
OnValueChange(Self);
end;
function TMeineKlasse.getBWStellung:Integer;
begin
Result:=fBWStellung;
end;
Hattes du überhaupt den Getter implementiert?