Aspose.Cells.Examples.CSharp.Articles.TestDataProvider.NextRow C# (CSharp) Method

NextRow() public method

public NextRow ( ) : int
return int
        public int NextRow()
        {
            ++_row;
            if (_row < this.maxRows)
            {
                _column = -1;
                return _row;
            }
            else
                return -1;
        }