Table of Contents

Class CellDataItem

Namespace
Smartsheet.Api.Models
Assembly
smartsheet-csharp-sdk.dll

Represents the widget object.

public class CellDataItem
Inheritance
CellDataItem
Inherited Members

Properties

Cell

Cell Object.

public Cell Cell { get; set; }

Property Value

Cell

the Cell Object

ColumnId

Column Id for each item

public long? ColumnId { get; set; }

Property Value

long?

the column Id

DataSource

CELL

public string DataSource { get; set; }

Property Value

string

the dataSource string

Label

Label for the data point. This will be either the column name or a user-provided string.

public string Label { get; set; }

Property Value

string

the label

LabelFormat

formatDescriptor.

public string LabelFormat { get; set; }

Property Value

string

the labelFormat

ObjectValue

The type of data returned will depend on the cell type and the data in the cell.

public object ObjectValue { get; set; }

Property Value

object

an object

Order

The display order for the CellDataItem.

public int? Order { get; set; }

Property Value

int?

the display order

ProfileField

Contains the SummaryField when dataSource is SUMMARY_FIELD

public SummaryField ProfileField { get; set; }

Property Value

SummaryField

SummaryField object

RowId

Row Id for each item

public long? RowId { get; set; }

Property Value

long?

the row Id

SheetId

Sheet Id for each item

public long? SheetId { get; set; }

Property Value

long?

the sheet Id

ValueFormat

formatDescriptor.

public string ValueFormat { get; set; }

Property Value

string

the valueFormat

See Also