'We assume that the GdViewer1 control has been properly integrated.
Friend WithEvents GdViewer1 As GdPicture14.GdViewer
'Add the event.
AddHandler GdViewer1.AnnotationClicked, AddressOf GdViewer1_AnnotationClicked
'Define the event.
Sub GdViewer1_AnnotationClicked(ByVal AnnotationIdx As Integer) Handles GdViewer1.AnnotationClicked
Dim annot As GdPicture14.Annotations.Annotation = GdViewer1.GetAnnotationFromIdx(AnnotationIdx)
MessageBox.Show("The annotation with the index " + AnnotationIdx.ToString() + " has been clicked.", "GdViewer.AnnotationClicked")
End Sub
//We assume that the GdViewer1 control has been properly integrated.
//Add the event.
GdViewer1.AnnotationClicked += GdViewer1_AnnotationClicked;
//Define the event.
void GdViewer1_AnnotationClicked(int AnnotationIdx)
{
GdPicture14.Annotations.Annotation annot = GdViewer1.GetAnnotationFromIdx(AnnotationIdx);
MessageBox.Show("The annotation with the index " + AnnotationIdx.ToString() + " has been selected.", "GdViewer.AnnotationClicked");
}