Hi,
I'm looking for a way to identify each annotation in javascript.
I want to be able to pass the name of an annotation item or some identifier that I can get a hold of on the server. That way when I do something to the annotaion.layer.item I can know which one to affect.
The javascript I have is
function
OnAnnotationClicked(e)
{
WebImageViewer1.RemoteInvoke(
'SetActiveAnnotation', new Array("stringValue"));
}
e.annotation is a valid object but is there some sort of e.annotation.name or e.annotation.id or WebImageViewer1 item number for the annotation item?
Cheers