get_cell method

get_cell

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

Returns

Cell object

def get_cell(self, worksheet_index, cell_name):
    ...
ParameterTypeDescription
worksheet_indexintIndex of the worksheet.
cell_namestrName of the cell.

get_cell

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

Returns

Cell object

def get_cell(self, worksheet_name, row, column):
    ...
ParameterTypeDescription
worksheet_namestrName of the worksheet.
rowintThe row.
columnintThe column.

get_cell

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

Returns

Cell object

def get_cell(self, worksheet_index, row, column):
    ...
ParameterTypeDescription
worksheet_indexintIndex of the worksheet.
rowintThe row.
columnintThe column.

get_cell

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

Returns

Cell object

def get_cell(self, worksheet_index, cell_name, value):
    ...
ParameterTypeDescription
worksheet_indexintIndex of the worksheet.
cell_namestrName of the cell.
valueanyThe value.

get_cell

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

Returns

Cell object

def get_cell(self, worksheet_index, row, column, value):
    ...
ParameterTypeDescription
worksheet_indexintIndex of the worksheet.
rowintThe row.
columnintThe column.
valueanyThe value.

See Also