Smartsheet.Api.Models.Column.UpdateColumnBuilder.Build C# (CSharp) Méthode

Build() public méthode

Gets the sheet Id. Gets the column Id. Builds the column.
public Build ( ) : Column
Résultat Column
            public virtual Column Build()
            {
                //if (title == null || sheetId == null || index == null)
                //{
                //	throw new MemberAccessException("A title, sheetId, and index are required");
                //}

                Column column = new Column();
                column.Id = id;
                column.index = index;
                column.title = title;
                //column.sheetId = sheetId;
                column.type = type;
                column.options = options;
                column.symbol = symbol;
                column.systemColumnType = systemColumnType;
                column.autoNumberFormat = autoNumberFormat;
                column.width = width;
                column.format = format;
                column.locked = locked;
                //column.ID = columnId;
                return column;
            }