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

NextCell() public method

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