BookMark Operation

Hi:
Below is a example,this is the url that you provided:
Untangle Row Bookmarks In Word Document | Aspose.Words Document Processing API step 3
Show Hide Bookmarks In Word Document | Aspose.Words Document Processing API step 2
Where is ‘step 2’ and ‘step 3’ source code?

If I want to create bookmarks in the ‘in case the user’ and ’ xlsx for spreadsheets’,I must to compare the documents where is the ‘in case the user’ and ’ xlsx for spreadsheets’?
Can you give me a example?
Test.docx (15.2 KB)

@JohnKj You can use IReplacingCallback to wrap text with bookmark. For example see the following code:

Document doc = new Document(@"C:\Temp\in.docx");
FindReplaceOptions opt = new FindReplaceOptions();
opt.ReplacingCallback = new ReplaceEvaluatorWrapWithBookmark();
doc.Range.Replace("in case the user", "", opt);
doc.Save(@"C:\Temp\out.docx");
internal class ReplaceEvaluatorWrapWithBookmark : IReplacingCallback
{
    /// <summary>
    /// This method is called by the Aspose.Words find and replace engine for each match.
    /// </summary>
    ReplaceAction IReplacingCallback.Replacing(ReplacingArgs e)
    {
        Document doc = (Document)e.MatchNode.Document;

        // This is a Run node that contains either the beginning or the complete match.
        Node currentNode = e.MatchNode;

        // The first (and may be the only) run can contain text before the match, 
        // in this case it is necessary to split the run.
        if (e.MatchOffset > 0)
            currentNode = SplitRun((Run)currentNode, e.MatchOffset);

        // This array is used to store all nodes of the match for further deleting.
        List<Run> runs = new List<Run>();

        // Find all runs that contain parts of the match string.
        int remainingLength = e.Match.Value.Length;
        while (
            remainingLength > 0 &&
            currentNode != null &&
            currentNode.GetText().Length <= remainingLength)
        {
            runs.Add((Run)currentNode);
            remainingLength -= currentNode.GetText().Length;

            // Select the next Run node.
            // Have to loop because there could be other nodes such as BookmarkStart etc.
            do
            {
                currentNode = currentNode.NextSibling;
            } while (currentNode != null && currentNode.NodeType != NodeType.Run);
        }

        // Split the last run that contains the match if there is any text left.
        if (currentNode != null && remainingLength > 0)
        {
            SplitRun((Run)currentNode, remainingLength);
            runs.Add((Run)currentNode);
        }

        // Generate an unique bookmakr name. Another approach can be used.
        // If bookmark starts with undescore it is hidden in MS Word. 
        string bookmarkName = "_" + Guid.NewGuid().ToString();
        while (doc.Range.Bookmarks[bookmarkName] != null)
            bookmarkName += "_" + Guid.NewGuid().ToString();

        // Insert a bookmakr around the matched text
        BookmarkStart start = new BookmarkStart(doc, bookmarkName);
        BookmarkEnd end = new BookmarkEnd(doc, bookmarkName);

        runs[0].ParentNode.InsertBefore(start, runs[0]);
        runs[runs.Count - 1].ParentNode.InsertAfter(end, runs[runs.Count - 1]);

        Bookmarks.Add(bookmarkName);

        // Signal to the replace engine to do nothing because we have already done all what we wanted.
        return ReplaceAction.Skip;
    }

    private static Run SplitRun(Run run, int position)
    {
        Run afterRun = (Run)run.Clone(true);
        run.ParentNode.InsertAfter(afterRun, run);
        afterRun.Text = run.Text.Substring(position);
        run.Text = run.Text.Substring((0), (0) + (position));
        return afterRun;
    }

    public List<string> Bookmarks
    {
        get { return mBookmarks; }
    }

    private List<string> mBookmarks = new List<string>();
}

Note the provided code inserts bookmarks that starts with underscore, such bookmarks are hidden in MS Word. If you need regular bookmarks, just use another bookmark names.

Regarding the tutorials I will consult with the responsible person and provide you more information.

@JohnKj We have updated the mentioned articles and included the required code examples.

Thank for your help

1 Like