AD
Administrator
Syncfusion Team
March 30, 2005 02:58 PM UTC
Hi Jamie,
How are you creating and adding this TextNode to the Diagram? I tried to reproduce the described scenario, but using the InsertNodesCmd to position the empty TextNode, and it works as expected without any problems. The following is the code that I tested with,
// Create a TextNode without any Text
TextNode txtnode = new TextNode();
txtnode.Size = new SizeF(150,50);
InsertNodesCmd inscmd = new InsertNodesCmd();
inscmd.Location = new PointF(150,50);
inscmd.Nodes.Add(txtnode);
this.diagramComponent.Controller.ExecuteCommand(inscmd);;
Have you tried using the MoveCmd to reposition the TextNode?
Thanks,
Prakash Surendra
Syncfusion Inc.,