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;
        }