Smartsheet.Api.Models.Column.CreateSheetColumnBuilder.SetPrimary C# (CSharp) Method

SetPrimary() public method

Sets whether the column is the Primary Column.
public SetPrimary ( bool primary ) : CreateSheetColumnBuilder
primary bool the primary
return CreateSheetColumnBuilder
            public virtual CreateSheetColumnBuilder SetPrimary(bool? primary)
            {
                this.primary = primary;
                return this;
            }