Help - Global function
From GraphicMeasurer Help
A global function in the result sheet language is a function that can be used anywhere in a result sheet language expression. In contrast to a method, global functions are not associated with a graphical object.
To browse the global functions that are available in the current version of GraphicMeasurer use the category page.
Examples
Expression | Result | Description |
---|---|---|
=or(0; 1) |
1 (true) | Returns 0 OR 1 .
|
=pi() |
π (3.14159...) | Returns the value of π. |
=cos(pi()) |
-1 | Returns the cosine of the given parameter. |
=strEqual("abc", "def") |
0 (false) | Tests if the two given strings are equal. |