|
Josh McCormick
2020-07-10 22:21:12
|
|
I'm working on a formula that needs SetHatchBrush called (conditionally) if a simple numeric comparison is true.
Example (in pseudocode):
=============================
if myvar < 10 then SetHatchBrush("Percent20", colorWhite|255);
...unfortunately, I can't come up with the proper syntax to conditionally call SetHatchBrush if my numerical comparison is TRUE. I tried using iff but it didn't seem to like the fact that SetHatchBrush doesn't return any variables.
What's the clever way to do this? Or is this not possible?
Thanks,
Josh McCormick
|
|