*CreateNote()

Includes a curve in a macro.

Syntax

*CreateNote (TRUE|FALSE)

Application

HyperGraph

Inputs

TRUE
The note is included in the macro.
FALSE
The note is not included in the macro.

Context

*BeginPlotMacros()

*DefinePlotMacro()

Example

*BeginPlotMacros()
   *DefinePlotMacro(macro_1)
      *Label("Macro 1")
      *CreateNote(TRUE)
      *Set(NOTE_POS, "0", "0")
      *Set(NOTE_ATTACHMENT, "Coordinate")
      *Set(NOTE_POINT, 5, 5)
   *EndDefine()
*EndPlotMacros()

Comments

*CreateNote() is used to create a note using a macro.

In the interface, a note can be created using a macro by selecting Create Note in the Plot Macros panel.

Macros can also be used to create curves using *CreateCurve().