Die Hilfe ist kaputt ... bei der automatischen Übersetzung sind ein paar Zeichen verloren gegangen.
Zitat:
[Error] constants_ini.pas(47): ':' expected but identifier 'TBasicGroupSettings' found
Rate mal, was zwischen Name und Typ kommt, bzw. vor den Typ.
Also wie hier (ich bevorzuge diese Quelle - das ist für mich leichter zu verstehen - weil sie die Beispiele enthält):
http://www.delphibasics.co.uk/RTL.asp?Name=Property
Code:
7.Property Name[Index : IndexType] : BaseType read Getter {default;}
Das habe ich in Beitrag 15# nicht gesehen.
Sie erklären auch das Standardwort, das mir unklar war.
"Default allows the Getter and Setter method calls to be replaced as in the following example:"
Code:
myValue := MyClass.Getter(23);
// can be replaced by :
myValue := MyCLass[23];
: