Programatically Selecting a GoBasicNode

Hi,

I have a GoBasicNode node that I want to programatically select.
How do I go about doing this? I didn’t notice a “.select()”
method on the GoBasicNodeObject.

Andy

If there were such a method, it would need to take a GoView as an argument, since each GoView that is displaying a GoDocument has its own Selection collection, independent of the selection in other views.
You just need to do: goView1.Selection.Select(anObject)
GoView.Selection is a collection, so you can do all the usual collection operations, and also there are some additional methods on the GoSelection class.