Hi
I am comparing two work documents and can loop through all of the revisions in the revisioncollections.
How do i find which paragraph the revision is in and at what the position within the paragraph is
Thanks
Hi
I am comparing two work documents and can loop through all of the revisions in the revisioncollections.
How do i find which paragraph the revision is in and at what the position within the paragraph is
Thanks
Hi there,
How do i find which paragraph the revision is in
Document doc = new Document(MyDir + “InsertedDeleted.doc”);<o:p></o:p>
foreach (Revision revision in doc.Revisions)
{
if (revision.ParentNode.NodeType == NodeType.Paragraph)
{
Paragraph para = (Paragraph)revision.ParentNode;
}
}
david.hancock@imagefast.co.uk:
at what the position within the paragraph is
Hi there,
Once we have the revision text location in the paragraph, is it possible to make this into a link/anchor/target so we can scroll to the location in code