ColumnCreateSheetColumnBuilder Constructor | |
Sets the required properties for a column.
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 CreateSheetColumnBuilder(
string title,
Nullable<bool> primary,
Nullable<ColumnType> type
)
Public Sub New (
title As String,
primary As Nullable(Of Boolean),
type As Nullable(Of ColumnType)
)
public:
CreateSheetColumnBuilder(
String^ title,
Nullable<bool> primary,
Nullable<ColumnType> type
)
new :
title : string *
primary : Nullable<bool> *
type : Nullable<ColumnType> -> CreateSheetColumnBuilder
Parameters
- title
- Type: SystemString
must be unique within the sheet - primary
- Type: SystemNullableBoolean
one and only one column may be a primary column - type
- Type: SystemNullableColumnType
must be set to TEXT_NUMBER if column is primary
See Also