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?
0
Comments
-
After
refclose
, runattsync
to display new attributes, or changes to attribute positions, definitions, etc.0 -
If you have a variable :
x<-"some variable"
you can do
attributes(x)$myattrib<-"someattributes"x
[1] "some variable"
attr(,"myattrib")
[1] "someattributes"
orattributes(x)
$myattrib
[1] "someattributes"0 -
Saw the sync option with battman, thanks!
0