V18 - adding attributes in Refedit session?

Wanting to edit a titleblock by adding some attributes within a refedit session. When hitting refclose, the attributes disappear, what am I missing here?

Comments

  • After refclose, run attsync to display new attributes, or changes to attribute positions, definitions, etc.

  • If you have a variable :
    x<-"some variable"
    you can do
    attributes(x)$myattrib<-"someattributes"

    x

    [1] "some variable"
    attr(,"myattrib")
    [1] "someattributes"
    or

    attributes(x)

    $myattrib
    [1] "someattributes"

  • Saw the sync option with battman, thanks!