add_line method

add_line

Adds a LineShape to the worksheet.

Returns

A LineShape object.

def add_line(self, upper_left_row, top, upper_left_column, left, height, width):
    ...
ParameterTypeDescription
upper_left_rowintUpper left row index.
topintRepresents the vertical offset of LineShape from its left row, in unit of pixel.
upper_left_columnintUpper left column index.
leftintRepresents the horizontal offset of LineShape from its left column, in unit of pixel.
heightintRepresents the height of LineShape, in unit of pixel.
widthintRepresents the width of LineShape, in unit of pixel.

Example


#  add a line object
lineShape = shapes.add_line(1, 0, 1, 0, 100, 50)

See Also