ArcGis Explorer 900 - ArcGis Desktop 9.3.1 - Visual Studio 2008 (C#)
How do you programmatically select an added note?
I am adding a note via:
_MapDisplay.Graphics.Remove(_TemporaryPointGraphic);
_AddedPointCount += 1;
_PointNote = new Note("User Added Point " + Convert.ToString(_AddedPointCount), _TemporaryPointGraphic);
_PointNote.Popup.Content = txtInfo.Text;
_MapDisplay.Map.ChildItems.Add(_PointNote);
The note gets added fine, but is not selected. The behavior I am looking for can be found by using the Measure tool, clicking the Information button (3rd button), clicking a point on the map, and then clicking the Add to Map button.
TIA