When I import the word file attached, it has a stackOverFlow exception when I running following code
foreach (var section in document.Sections)
{
document.CaretPosition.MoveToEndOfDocumentElement(section);
editor.ChangeSectionColumns(SectionColumnsLayout.One);
}
Is there any way to solve it, or how can I modify the word file to avoid the crash?