Here is a VSTO function that I’m trying to translate to Aspose.Words:
public Field GetNextField(Range rng, int selStart)
{
var NextField = (from f in rng.Fields
where f.Start > selStart
…...NextField; } It is a bit of LINQ, but the basic idea is to get...