RowAddRowBuilder Constructor | |
Sets the required property/properties for Adding a Row
Namespace:
Smartsheet.Api.Models
Assemblies:
smartsheet-csharp-sdk (in smartsheet-csharp-sdk.dll) Version: 2.126.0
smartsheet-csharp-sdk (in smartsheet-csharp-sdk.dll) Version: 2.126.0
Syntax public AddRowBuilder(
Nullable<bool> toTop,
Nullable<bool> toBottom,
Nullable<long> parentId,
Nullable<long> siblingId,
Nullable<bool> above
)
Public Sub New (
toTop As Nullable(Of Boolean),
toBottom As Nullable(Of Boolean),
parentId As Nullable(Of Long),
siblingId As Nullable(Of Long),
above As Nullable(Of Boolean)
)
public:
AddRowBuilder(
Nullable<bool> toTop,
Nullable<bool> toBottom,
Nullable<long long> parentId,
Nullable<long long> siblingId,
Nullable<bool> above
)
new :
toTop : Nullable<bool> *
toBottom : Nullable<bool> *
parentId : Nullable<int64> *
siblingId : Nullable<int64> *
above : Nullable<bool> -> AddRowBuilder
Parameters
- toTop
- Type: SystemNullableBoolean
Indicates that the row should be added to the top of the sheet. - toBottom
- Type: SystemNullableBoolean
Indicates that the row should be added to the bottom of the sheet, or, if used in conjunction with parentId, added as the last child of the parent. - parentId
- Type: SystemNullableInt64
Indicates that the row should be added as the first child of this row. - siblingId
- Type: SystemNullableInt64
Indicates that the row should be added as the next row at the same hierarchical level of this row. - above
- Type: SystemNullableBoolean
Optionally used in conjunction with siblingId with a value of true to indicate that the row should be added above the specified sibling row.
Remarks
If multiple rows are specified in the request,
all rows must be inserted at the same location
(i.e. the toTop, toBottom, parentId, siblingId,
and above attributes must be the same for all rows in the request).
See Also