annotation note
Create, delete, copy, and edit notes.
Syntax
annotation note create <name>
annotation note delete all
annotation note delete <name>
annotation note <name> attach <name1>=<value1>
annotation note <name|range> copy
annotation note <name|range> display <name1>=<value1>
annotation note rename <name|range> <new label>
Arguments
- create
 - Create a note.
 - delete
 - Delete a note.
 - <name> attach
 - The note attachment type. <name> is the note's
                            name. Attachment types include coordinate,
                                entity, and window.
- coordinates
 - Attach the note to the XYZ coordinates.
x=<x>, y=<y>, z=<z> Enter the x, y, and z coordinates of the note.  - entity
 - Attach the note to an entity. Select one of the following
                                        entity types:
                                            component|element|node|system.
<id> Enter the entity ID. select Select an entity from the modeling window.  - window
 - Attach a note to the window.
x=<x>, y=<y> Enter normalized x and y screen coordinates between 0-1.  
 - <name|range> copy
 - Copies a single note referenced by name or ID. To copy multiple notes, the range syntax is required.
 - <name|range> display
 - Note display settings. Options include:
- aligntext=<left/center/right>
 - Aligns the note text.
 - autohide=<true/false>
 - Hide the note box when the entity that the note is attached to is not visible on the screen.
 - bordercolor="<R> <G> <B>"
 - bordercolor=<color>
 - Select a color for the note box border. Enter RGB values, select <color> to display and select a color from the color palette, or select a color from the list.
 - borderthickness=<0-4>
 - Select a border thickness value to apply to the note box. Enter a value between 1-4.
 - fillcolor="<R> <G> <B>"
 - fillcolor=<color>
 - Select a fill color for the note. Enter RGB values, select
                                        <color> to display and select a color from the color
                                        palette, or select a color from the list.Note: This is deactivated if filltransparency=true.
 - filltransparency=<true/false>
 - Removes the color from within the note box and makes it transparent against the window.
 - font=<font>
 - Select the font type.
 - fontsize=<fontsize>
 - Select the font size. Enter a value between 8-48.
 - linetoentity=<Continuous/Stipple>
 - Supports displaying the line from the note to the entity stippled if it is hidden by the model.
 - movetoentity=<true/false>
 - Positions the note at the attachment location. This option is disabled if Window is selected as the attachment type.
 - positiontype=<screen/coordinates>
 - Positions the note on a fixed xy screen position (values between 0 and 1) or on the xyz model coordinates.
 - positionx=<x>
 - Note x position.
 - positionx=<y>
 - Note y position.
 - positionx=<z>
 - Note z position (only valid for position type coordinates).
 - screenanchor=<true/false>
 - The note remains stationary during animation or when manipulating the model view. This option is disabled if Window is selected as the attachment type.
 - shape=<rectangle,circle,ellipse>
 - Select the shape of the note box.
 - text=<text>
 - Enter note text.
 - textcolor="<R> <G> <B>"
 - textcolor=<color>
 - Select a color for the note text. Enter RGB values, select <color> to display and select a color from the color palette, or select a color from the list.
 - visibility=<true/false>
 - Display or hide the note from the modeling window.
 - x=<x>
 - The x coordinate of the note's location in the modeling window.
 - y=<y>
 - The y coordinate of the note's location in the modeling window.
 
 - rename
 - Rename a note.
- <name>
 - Select the name of the note you want to rename.
 - <name>
 - Enter the note's new name.
 
 
Examples
Create a note:
            annotation note create Note1Delete all notes:
            annotation note delete allDelete Note 2:
            annotation note delete "Note 2"Attach a note to coordinates, an entity, or a window
                location:
            annotation note "Note 5" attach coordinates x=0.5 y=0.5 z=0.5annotation note "Note 4" attach entity component id "1 Solid 19"annotation note "Note 3" attach window x=0.5 y=0.5Rename a note:
            annotation note rename Note1 Note2Change the note's
                visibility:
            annotation note "Note 1" display visibility=falseDefine the note's x and y coordinates for
                display:
            annotation note "Note 1" display x=3annotation note "Note 1" display y=3Define the note's text
                color:
            annotation note "Note 1" display textcolor=RedDefine the note's
                text:
            annotation note "Note 1" display text="Note 1"Align note
                text:
            annotation note "Note 2" display aligntext=CenterHide the note
                box:
            annotation note "Note 2" display autohide=trueDefine the note box border
                color:
            annotation note "Note 1" display bordercolor="255 255 255"Define the note box border
                thickness:
            annotation note "Note 3" display borderthickness=3Define the fill color for the
                note:
            annotation note "Note 3" display fillcolor="44 85 126"Define the transparency of the note
                box:
            annotation note "Note 2" display filltransparency=falseDefine the font and font
                size:
            annotation note "Note 2" font="Papyrus 10 normal roman"annotation note "Note 2" display fontsize=12Define the note's
                position:
            annotation note "Note 2" display movetoentity=trueDefine the screen anchor
                parameter:
            annotation note "Note 2" display screenanchor=trueDefine the shape of the note
                box:
        annotation note "Note 2" display shape=ellipse