create_line# TwinBuilderComponents.create_line(points: list, color: int = 0, width: int = 0, page: int = 1)# Draw a graphical line. Parameters: pointslistA nested list of point coordinates. For example, [[x1, y1], [x2, y2], ...]. colorstr or 3 item list, optionalColor or the line. The default is "0". widthfloat, optionalWidth of the line. The default is 0. page: int, optionalSchematic page number. The default value is 1. Returns: >>> :obj:`oEditor.CreateLine` ..