Registriert seit: 18. Aug 2004
Ort: Brackenheim VS08 Pro
2.876 Beiträge
|
Re: Variable soll nur bestimmte Werte annehmen dürfen - wie?
11. Jul 2005, 16:16
Zitat von Kedariodakon:
hier mal nen Beispiel mit nem String Array, falls es noch wer gebrauchen kann...
Delphi-Quellcode:
Procedure TMeinDef.SetValue( Const Value: String );
Var i: Integer;
Const Valids: Array[ 0..2 ] Of String = ( ' ha', ' hb', ' hc' );
Begin
For i := Low( Valids ) To High( Valids ) Do Begin
If SameText( Valids[ i ], Value ) Then Begin
FValue := Value;
Exit;
End;
End;
Raise Exception.Create( ' "' + Value + ' "is a wrong kind of Value' );
End;
Das kommt mir bekannt vor : http://www.delphipraxis.net/internal...=395597#395597
Sebastian Moderator in der EE
|