The NOTE Statement
- Last UpdatedJan 07, 2026
- 1 minute read
NOTE,<note_name>,<start_pnt>,<ref_cnt>,<note_text>
[/NOTESYMBOL=<note_symb>]
[/REFSYMBOL=<ref_symb>];
<note_name> is the name of the note and has the type NOTE_2D. The maximum length of <note_name> is 32 characters.
<start_pnt> is the starting point of the reference lines of the note. It has the type POINT_2D.
<ref_cnt> is the reference lines of the note. It has the type CONTOUR_2D. This contour must have been defined previously.
<note_text> is the text in the note (with type TEXT_2D) which has previously been defined.
NOTESYMBOL=<note_symb>
<note_symb> is the number of the note symbol. It has the type INTEGER. The default note symbol is number 31.
REFSYMBOL=<ref_symb>
<ref_symb> is the number of the reference symbol. It has the type INTEGER. The default reference symbol is number 21.
Structure:
|
TEXT |
(STRING) |
||
|
NOTESYMB |
(INTEGER) |
||
|
REFSYMB |
(INTEGER) |
||
|
PNT(1:2) |
(DECIMAL) |
||
|
NSEG |
(INTEGER) |
||
|
SEGPARTS(1:NSEG) |
|||
|
ENDPNT(1:2) |
(DECIMAL) |
||
|
AMPLITUDE(1:2) |
(DECIMAL) |
||
|
Example: |
|||
|
GET/STRUCTURE=(NS,<note_name>,'NOTESYMB') |
|||
|
/STRUCTURE=(RS,<note_name>,'REFSYMB') |
|||
|
/STRUCTURE=(SX,<note_name>,'PNT',1) |
|||
|
/STRUCTURE=(N,<note_name>,'NSEG') |
|||
|
/STRUCTURE=(X,<note_name>,'ENDPNT',N,1) |
|||
|
/STRUCTURE=(Y,<note_name>,'AMPLITUDE',2,'Y'); |
|||