Can I as a user somewhere see and change the data plug-ins have written to my files (without scripting)?
Only through the plug-in you used to create it.
There is no separate tool for viewing the data outside of the plug-in.
1 Like
The only user data you can look at is what is called user text - set with SetUserText
and retrieved with GetUserText
. All development tools provide access to user text. User data, specifically, is private and the structure is only known by the developer.
– Dale
1 Like
Okay, thank you.