Hi Team,
Why have you decided to remove the LayoutEnumeraor MoveNode function ?
I would personally prefer to use this method, rather that the elaborate RenderedDocument Helper classes in your sample applications.
Could you please assist with a method to replicate the functionality in the original MoveNode function ?
I need to use it in the following fashion :
var collection = doc.GetChildNodes(NodeType.Shape, true);var collection = doc.GetChildNodes(NodeType.Shape, true);
foreach (var shape in collection)
{
var renderObject = layoutEnumerator.MoveNode(shape);
Rectangle location = renderObject.Rectangle;
int page = renderObject.StartPage;
}
Your assistance would be greatly appreciated.
Thanks