Is there a method to retrieve the selected nodes and links?
GoView.Selection.
For example, from the DrawDemo “push to back” menu item:
private void menuItemPushToBack_Click(object sender, EventArgs e) {
foreach (GoObject obj in this.goView1.Selection) {
obj.Layer.MoveBefore(null, obj);
}
}