TLama

Untitled

Apr 13th, 2013
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.20 KB | None | 0 0
  1. function GetColorByDiff(ADifference: Integer): TColor;
  2. begin
  3.   Result := clBlue;
  4.   case ADifference of
  5.     0: Result := clGreen;
  6.     1..3: Result := clYellow;
  7.     4..8: Result := clRed;
  8.   end;
  9. end;
Advertisement
Add Comment
Please, Sign In to add comment