Aspose.Cells.Examples.CSharp.Articles.TestDataProvider.NextRow C# (CSharp) Метод

NextRow() публичный Метод

public NextRow ( ) : int
Результат int
        public int NextRow()
        {
            ++_row;
            if (_row < this.maxRows)
            {
                _column = -1;
                return _row;
            }
            else
                return -1;
        }