Smartsheet.Api.Models.Cell.AddCellBuilder.Build C# (CSharp) Method

Build() public method

Builds and returns the Cell object.
public Build ( ) : Cell
return Cell
            public virtual Cell Build()
            {
                Cell cell = new Cell();
                cell.ColumnId = columnId;
                cell.Value = value;
                cell.Strict = strict;
                cell.Format = format;
                cell.Hyperlink = hyperlink;
                return cell;
            }