GetCell

GetCell(string, int, int)

Gets the cell that can be used for chart series or categories

public IChartDataCell GetCell(string worksheetName, int row, int column)
ParameterTypeDescription
worksheetNameStringName of the worksheet.
rowInt32The row.
columnInt32The column.

Return Value

Cell object

See Also


GetCell(int, int, int)

Gets the cell that can be used for chart series or categories

public IChartDataCell GetCell(int worksheetIndex, int row, int column)
ParameterTypeDescription
worksheetIndexInt32Index of the worksheet.
rowInt32The row.
columnInt32The column.

Return Value

Cell object

See Also


GetCell(int, string)

Gets the cell that can be used for chart series or categories

public IChartDataCell GetCell(int worksheetIndex, string cellName)
ParameterTypeDescription
worksheetIndexInt32Index of the worksheet.
cellNameStringName of the cell.

Return Value

Cell object

See Also


GetCell(int, string, object)

Gets the cell that can be used for chart series or categories

public IChartDataCell GetCell(int worksheetIndex, string cellName, object value)
ParameterTypeDescription
worksheetIndexInt32Index of the worksheet.
cellNameStringName of the cell.
valueObjectThe value.

Return Value

Cell object

See Also


GetCell(int, int, int, object)

Gets the cell that can be used for chart series or categories

public IChartDataCell GetCell(int worksheetIndex, int row, int column, object value)
ParameterTypeDescription
worksheetIndexInt32Index of the worksheet.
rowInt32The row.
columnInt32The column.
valueObjectThe value.

Return Value

Cell object

See Also