How to change image wrap type using Aspose.Pdf?

Do you know how to do this with aspose.pdf.???

Document doc = new Document(@"C:\Temp\in.html");
NodeCollection shapes = doc.GetChildNodes(NodeType.Shape, true);
foreach (Shape s in shapes)
{
    s.WrapType = WrapType.Square;
    s.Top += s.Height + 10;
}
doc.Save(@"C:\Temp\out.docx");

2 posts were merged into an existing topic: How to wrap images in aspose.pdf when converting html to pdf for .NET