Arbortext IsoDraw > Macro Language Reference > Window Commands > Palette Window Toolbox > Creating Elements > Append Line Segment
  
Append Line Segment
The APPEND LINE SEGMENT command appends a line to the last line created by the CREATE LINE command or by an APPEND LINE command. To append a line for the first time there has to be a line created by the CREATE LINE command,
The start point for the appended line is the end point of the line plotted by the CREATE LINE command or . the APPEND LINE SEGMENT command.
APPEND LINE SEGMENTxy
x, y
End point of the line segment.
MACRO house_of_nicholas

#first create a line by a macro command
CREATE LINE 100 100 200 100

#second append line segments
APPEND LINE SEGMENT 200 200
APPEND LINE SEGMENT 100 100
APPEND LINE SEGMENT 100 200
APPEND LINE SEGMENT 200 200
APPEND LINE SEGMENT 150 250
APPEND LINE SEGMENT 100 200
APPEND LINE SEGMENT 200 100

END MACRO