Zitat von
mkinzler:
Natürlich in Verbindung mit (Getter/)Setter
Delphi-Quellcode:
TMyClass = class
private
FEinByte: Byte;
public
Procedure setEinByte( Value: byte);
published
property EinByte: Byte read FEinByte write setEinByte;
end;
Sollte die Sichtbarkeit von setEinByte nicht private sein?