Smartsheet.Api.Models.RowWrapper.InsertRowsBuilder.SetToTop C# (CSharp) Method

SetToTop() public method

Sets the To top flag that puts the row at the top of the sheet.
public SetToTop ( bool toTop ) : InsertRowsBuilder
toTop bool the To top flag
return InsertRowsBuilder
            public virtual InsertRowsBuilder SetToTop(bool? toTop)
            {
                this.toTop = toTop;
                return this;
            }