GetCell()

ChartDataWorkbook::GetCell(System::String, int32_t, int32_t) method

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

System::SharedPtr<IChartDataCell> Aspose::Slides::Charts::ChartDataWorkbook::GetCell(System::String worksheetName, int32_t row, int32_t column) override

Arguments

ParameterTypeDescription
worksheetNameSystem::StringName of the worksheet.
rowint32_tThe row.
columnint32_tThe column.

Return Value

Cell object

ChartDataWorkbook::GetCell(int32_t, int32_t, int32_t) method

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

System::SharedPtr<IChartDataCell> Aspose::Slides::Charts::ChartDataWorkbook::GetCell(int32_t worksheetIndex, int32_t row, int32_t column) override

Arguments

ParameterTypeDescription
worksheetIndexint32_tIndex of the worksheet.
rowint32_tThe row.
columnint32_tThe column.

Return Value

Cell object

ChartDataWorkbook::GetCell(int32_t, System::String) method

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

System::SharedPtr<IChartDataCell> Aspose::Slides::Charts::ChartDataWorkbook::GetCell(int32_t worksheetIndex, System::String cellName) override

Arguments

ParameterTypeDescription
worksheetIndexint32_tIndex of the worksheet.
cellNameSystem::StringName of the cell.

Return Value

Cell object

ChartDataWorkbook::GetCell(int32_t, System::String, System::SharedPtr<System::Object>) method

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

System::SharedPtr<IChartDataCell> Aspose::Slides::Charts::ChartDataWorkbook::GetCell(int32_t worksheetIndex, System::String cellName, System::SharedPtr<System::Object> value) override

Arguments

ParameterTypeDescription
worksheetIndexint32_tIndex of the worksheet.
cellNameSystem::StringName of the cell.
valueSystem::SharedPtr<System::Object>The value.

Return Value

Cell object

ChartDataWorkbook::GetCell(int32_t, int32_t, int32_t, System::SharedPtr<System::Object>) method

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

System::SharedPtr<IChartDataCell> Aspose::Slides::Charts::ChartDataWorkbook::GetCell(int32_t worksheetIndex, int32_t row, int32_t column, System::SharedPtr<System::Object> value) override

Arguments

ParameterTypeDescription
worksheetIndexint32_tIndex of the worksheet.
rowint32_tThe row.
columnint32_tThe column.
valueSystem::SharedPtr<System::Object>The value.

Return Value

Cell object

See Also