createLine
Creates a new line.
Signature
createLine(): LineNode
Remarks
By default, the new node is 100 in width, has a black stroke, with weight 1, and is parented under figma.currentPage
.
Create a line and set basic styles
const line = figma.createLine()
// Move to (50, 50)
line.x = 50
line.y = 50
// Make line 200px long
line.resize(200, 0)
// 4px thick red line with arrows at each end
line.strokeWeight = 4
line.strokes = [{ type: 'SOLID', color: { r: 1, g: 0, b: 0 } }]
line.strokeCap = 'ARROW_LINES'