Smartsheet.Api.Models.Column.AddColumnBuilder.AddColumnBuilder C# (CSharp) Method

AddColumnBuilder() public method

Sets the required properties for adding a Column to a Sheet.
public AddColumnBuilder ( string title, int index, ColumnType type ) : System
title string the Column title
index int the Column index (zero-based)
type ColumnType the Column Type
return System
            public AddColumnBuilder(string title, int? index, ColumnType? type)
            {
                this.title = title;
                this.index = index;
                this.type = type;
            }