0

Is there such a function in Delphi that will return the result of a comparison.

Example:

label.visible := evaluate(1 > 3);

I have searched but I don't know what that would be called.

4

1 回答 1

7

不需要你可以写的函数

label.visible := 1 > 3;

因为1 > 3是一个布尔表达式。

于 2013-05-03T22:01:09.197 回答