Hi,
I have two question as below.
1 ) I’d like to know how I get a node or link text value when it is deleted. I produced the code as below, but they didn’t get a deleted node name.
private void goView1_DocumentChanged(object sender, Northwoods.Go.GoChangedEventArgs e)
{
string StrDelNode = string.Empty;
if (e.Hint == GoNode.RemovedObject)
{
GoNode node = e.GoObject.SelectionObject as GoNode;
StrDelNode = node.Text;
MessageBox.Show(StrDelNode);
}
}
- How do I get all node in document except for link?
I produced the following code but it occurs an object
reference error when this object are reading a link.
foreach (GoBasicNode obj in this.document)
{
nodename = obj.Text;
}
regards,