Hi,
My requirement is to read properties of cross reference show in below picture of word document through coding c#.
In those properties I need to find cross references that are created by Only Label And Number property only
Already tried below code but unable to find those properties
foreach (Field field in doc.Range.Fields)
{
if (field.Type.Equals(FieldType.FieldRef))
{
FieldRef fieldRef = (FieldRef)field;
Console.WriteLine(doc.Range.Bookmarks[fieldRef.DisplayResult].Text);
}
}
Please Help Me,