Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function GetColorByDiff(ADifference: Integer): TColor;
- begin
- Result := clBlue;
- case ADifference of
- 0: Result := clGreen;
- 1..3: Result := clYellow;
- 4..8: Result := clRed;
- end;
- end;
Advertisement
Add Comment
Please, Sign In to add comment