Hello, in runtime 10.2.4 we have an ability to add graphic to layer like this:
int id = addGraphic(Graphic g),
and like this:
int[] ids = addGraphic(Graphic[] g).
But when we need to remove graphic, we can do only this:
removeGraphic(int id)
Is there any way to remove many graphic objects from layer at one time, something like:
removeGraphic(int[] ids)
Thank you, thats sad, it seems that i need to stay with some workarounds