BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
As suggested by Syncfusion support in another thread, (https://www.syncfusion.com/forums/172575/replacesingleline-doesnt-replace-embedded-tables ) I am trying to use Bookmarks to conditionally replace content in a document. While using the bookmarks does solve the problem in that thread it does create a new problem.
When using bookmarks to conditionally remove content in a document the paragraph formatting of document unexpectedly changes.
Here is a screenshot of a sample document.
If my goal is to be able to conditionally replace the content in the paragraph denoted by the starting tag "1@" and the ending tag "@1" then I would expect to get the screenshot below if the paragraph should not be removed.
And I would expect this if the paragraph was removed.
However, this is what I get if the paragraph is not removed.
And this is what I get if the paragraph is removed.
As you can see, in both cases, after the paragraph to be replaced the paragraph formatting changes from double-space to single-space. What is going on and how can I fix this? This seems like a bug to me.
I am attaching the template document and here is my code.
var document = new WordDocument(Server.MapPath("Template2.docx"), FormatType.Docx);
var bookmarkNavigator = new BookmarksNavigator(document);
document.ReplaceFirst = true;
var bookmarkName = "ConditionalParagraph";
var startTagTextBodyPart = new TextBodyPart(document);
var startTagPlaceholder = new WParagraph(document);
startTagPlaceholder.AppendBookmarkStart(bookmarkName);
startTagTextBodyPart.BodyItems.Add(startTagPlaceholder);
document.ReplaceSingleLine(new Regex(@"@1"), startTagTextBodyPart);
var endTagTextBodyPart = new TextBodyPart(document);
var endTagPlaceholder = new WParagraph(document);
endTagPlaceholder.AppendBookmarkEnd(bookmarkName);
endTagTextBodyPart.BodyItems.Add(endTagPlaceholder);
document.ReplaceSingleLine(new Regex(@"1@"), endTagTextBodyPart);
var bookmark = document.Bookmarks.FindByName(bookmarkName);
var deleteParagraph = true;
if (deleteParagraph)
{
bookmarkNavigator.MoveToBookmark(bookmarkName);
bookmarkNavigator.DeleteBookmarkContent(false);
}
document.Bookmarks.Remove(bookmark);
document.ReplaceFirst = false;
document.Save("Sample.docx", FormatType.Docx, HttpContext.Current.Response, HttpContentDisposition.Attachment);
document.Close();
Thanks
var document = new WordDocument(Server.MapPath("Template2.docx"), FormatType.Docx); var bookmarkNavigator = new BookmarksNavigator(document); document.ReplaceFirst = true; var bookmarkName = "ConditionalParagraph"; TextSelection textSelection = document.Find(new Regex(@"@1")); //Gets the found text as single text range WTextRange textRange = textSelection.GetAsOneRange(); WParagraph paragraph = textRange.OwnerParagraph; var startTagTextBodyPart = new TextBodyPart(document); var startTagPlaceholder = paragraph.Clone() as WParagraph; startTagPlaceholder.ChildEntities.Clear(); startTagPlaceholder.AppendBookmarkStart(bookmarkName); startTagTextBodyPart.BodyItems.Add(startTagPlaceholder); document.ReplaceSingleLine(new Regex(@"@1"), startTagTextBodyPart); textSelection = document.Find(new Regex(@"1@")); //Gets the found text as single text range textRange = textSelection.GetAsOneRange(); paragraph = textRange.OwnerParagraph; var endTagTextBodyPart = new TextBodyPart(document); var endTagPlaceholder = paragraph.Clone() as WParagraph; endTagPlaceholder.ChildEntities.Clear(); endTagPlaceholder.AppendBookmarkEnd(bookmarkName); endTagTextBodyPart.BodyItems.Add(endTagPlaceholder); document.ReplaceSingleLine(new Regex(@"1@"), endTagTextBodyPart); var bookmark = document.Bookmarks.FindByName(bookmarkName); var deleteParagraph = true; if (deleteParagraph) { bookmarkNavigator.MoveToBookmark(bookmarkName); bookmarkNavigator.DeleteBookmarkContent(false); } document.Bookmarks.Remove(bookmark); document.ReplaceFirst = false; document.Save("Sample.docx", FormatType.Docx, HttpContext.Current.Response, HttpContentDisposition.Attachment); document.Close(); |
Yes, that seems to have done the trick. Thanks.