ColumnAddColumnBuilder Constructor | |
Sets the required properties for adding a column to a sheet.
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 AddColumnBuilder(
string title,
Nullable<int> index,
Nullable<ColumnType> type
)
Public Sub New (
title As String,
index As Nullable(Of Integer),
type As Nullable(Of ColumnType)
)
public:
AddColumnBuilder(
String^ title,
Nullable<int> index,
Nullable<ColumnType> type
)
new :
title : string *
index : Nullable<int> *
type : Nullable<ColumnType> -> AddColumnBuilder
Parameters
- title
- Type: SystemString
the column title - index
- Type: SystemNullableInt32
the column index (zero-based) - type
- Type: SystemNullableColumnType
the column type
See Also