I have an issue where the first page of a DOCX file is split into 2 PDF pages.
"However, because of complexity, the implementation of the fix of this issue has been postponed."
Hi Dan,
Hi Dan,
Our customer is still asking if there will ever be a fix for this issue?
Hi Dan,
Hi Dan,
// Go through all sections and make tight-wrapped shapes in headers/footers not wrapped.
foreach (Section section in doc.Sections)
{
foreach (HeaderFooter headerFooter in section.HeadersFooters)
{
NodeCollection shapes = headerFooter.GetChildNodes(NodeType.Shape, true);
foreach (Shape shape in shapes)
{
bool isTightWrapped = (shape.WrapType == WrapType.Tight) || (shape.WrapType == WrapType.Through);
if (isTightWrapped)
{
shape.WrapType = WrapType.None;
}
}
}
}
doc.Save(MyDir + @"16.12.0.pdf");
I am trying to test this example and I cannot resolve Section? has the class name changed?
Hi Dan,