J.
J.Nagarajan
Syncfusion Team
August 28, 2006 10:33 AM UTC
Hi Lan,
Sorry for the delay in response.
UndoCommand(),RedoCommand() methods and CanUndo,CanRedo bool properties of Syncfusion.Windows.Forms.Diagram.Controls.Diagram is no longer valid for the version 4.2.0.60.
You could use the following code snippet to achieve the same
this.diagram1.Controller.UndoCommand();
this.diagram1.Controller.RedoCommand();
bool canundo=this.diagram1.Controller.CanUndo;
bool canredo=this.diagram1.Controller.CanRedo;
Please let me know if you have any questions.
Thanks,
Nagaraj