Aspose.Cells.Examples.CSharp.Articles.TestDataProvider.NextCell C# (CSharp) 메소드

NextCell() 공개 메소드

public NextCell ( ) : int
리턴 int
        public int NextCell()
        {
            ++_column;
            if (_column < this.maxColumns)
                return _column;
            else
            {
                _column = -1;
                return -1;
            }
        }
        public int NextRow()