Example:
if(dc has :drawAngledText) { dc.drawAngledText(x, y, font2, text2, Gfx.TEXT_JUSTIFY_LEFT, 90); }
On other watches like Forerunner 955, it draws the text. On other watches that don't support drawAngledText(), it doesn't try to draw the angled text. But on Venu 3, it tries to call dc.drawAngledText() but gets an error:
Error: Symbol Not Found Error
Details: Failed invoking <symbol>
This happens on hardware as well as simulator.
The documentation says it should work on Venu 3, so the if(dc has :drawAngledText) condition is expected to be true on Venu 3, but it should be able to successfully draw the text.