Aspose.Cells.Examples.CSharp.Articles.TestDataProvider.StartCell C# (CSharp) Méthode

StartCell() public méthode

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