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

StartCell() public method

public StartCell ( Cell cell ) : void
cell Cell
return void
        public void StartCell(Cell cell)
        {
            cell.PutValue(_row + _column);
            if (_row == 1)
            {
            }
            else
            {
                cell.Formula = "=Rand() + A2";
            }
        }