C# Класс Smartsheet.Api.Models.RowWrapper.InsertRowsBuilder

A convenience class for creating a RowWrapper with the necessary fields for inserting a Row or set of Rows.
Показать файл Открыть проект

Открытые методы

Метод Описание
Build ( ) : RowWrapper

Builds the RowWrapper.

SetParentId ( long parentId ) : InsertRowsBuilder

Sets the parent Id that puts the row as the first child of the specified Id.

SetRows ( IList rows ) : InsertRowsBuilder

Sets the Rows.

SetSiblingId ( long siblingId ) : InsertRowsBuilder

Sets the sibling Id that puts the row as the next row at the same hierarchical level of this row.

SetToBottom ( bool toBottom ) : InsertRowsBuilder

Sets the To bottom flag that puts the row at the bottom of the sheet.

SetToTop ( bool toTop ) : InsertRowsBuilder

Sets the To top flag that puts the row at the top of the sheet.

Описание методов

Build() публичный Метод

Builds the RowWrapper.
public Build ( ) : RowWrapper
Результат RowWrapper

SetParentId() публичный Метод

Sets the parent Id that puts the row as the first child of the specified Id.
public SetParentId ( long parentId ) : InsertRowsBuilder
parentId long the parent Id
Результат InsertRowsBuilder

SetRows() публичный Метод

Sets the Rows.
public SetRows ( IList rows ) : InsertRowsBuilder
rows IList the Rows
Результат InsertRowsBuilder

SetSiblingId() публичный Метод

Sets the sibling Id that puts the row as the next row at the same hierarchical level of this row.
public SetSiblingId ( long siblingId ) : InsertRowsBuilder
siblingId long the sibling Id
Результат InsertRowsBuilder

SetToBottom() публичный Метод

Sets the To bottom flag that puts the row at the bottom of the sheet.
public SetToBottom ( bool toBottom ) : InsertRowsBuilder
toBottom bool the To bottom
Результат InsertRowsBuilder

SetToTop() публичный Метод

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
Результат InsertRowsBuilder