Hi,
I have a number of Features on an InMemoryFeatureLayer consisting of an image (a custom ValueStyle) and a label (a custom TextStyle).
What I am trying to do is determine whether a point on the screen is within either the image or the label. I have the image detection working by finding its bounds on screen and converting those into a RectangleF which I then compare the point to using its .Contains() function.
I can’t figure out however how to get the screen bounds for the label. How can this be done?