ApiExamples.ExNestedMailMergeCustom.OrderMailMergeDataSource.MoveNext C# (CSharp) Method

MoveNext() public method

A standard implementation for moving to a next record in a collection.
public MoveNext ( ) : bool
return bool
            public bool MoveNext()
            {
                if (!this.IsEof)
                    this.mRecordIndex++;

                return (!this.IsEof);
            }
ExNestedMailMergeCustom.OrderMailMergeDataSource