C# 클래스 Smartsheet.Api.Models.RowWrapper.MoveRowBuilder

A convenience class for creating a RowWrapper with the necessary fields for moving a Row or set of Rows.
파일 보기 프로젝트 열기: smartsheet-platform/smartsheet-csharp-sdk

공개 메소드들

메소드 설명
Build ( ) : RowWrapper

Builds the RowWrapper.

SetParentId ( long parentId ) : MoveRowBuilder

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

SetSiblingId ( long siblingId ) : MoveRowBuilder

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

SetToBottom ( bool toBottom ) : MoveRowBuilder

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

SetToTop ( bool toTop ) : MoveRowBuilder

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 ) : MoveRowBuilder
parentId long the parent Id
리턴 MoveRowBuilder

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 ) : MoveRowBuilder
siblingId long the sibling Id
리턴 MoveRowBuilder

SetToBottom() 공개 메소드

Sets the To bottom flag that puts the row at the bottom of the sheet.
public SetToBottom ( bool toBottom ) : MoveRowBuilder
toBottom bool the To bottom
리턴 MoveRowBuilder

SetToTop() 공개 메소드

Sets the To top flag that puts the row at the top of the sheet.
public SetToTop ( bool toTop ) : MoveRowBuilder
toTop bool the To top
리턴 MoveRowBuilder