.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Save command defaults
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hi All, I have exhausted my searching, so here goes. I am looking for "best practice" example code for saving/re-using command default values from previous user input. Similar to lisp globals, but for C# (or VB.net); ie next time the command is run in a given session, the user's previous input is the default <>. I am currently using Properties.Settings to persist these values. Thanks, Dale
Solved! Go to Solution.
Re: Save command defaults
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I wouldn't say there is a definite best practice. There are several ways of doing this.
If you're not defining all your CommandClass CommandMethods as static/shared functions, then an instance of your class is created by AutoCAD for each document your command is run in. In that scenario, you can simply store your default values as member variables of your class. That way you're storing 'per document' data.
Alternatively, you can store 'per document' data using the Document.UserData property.
Or if you want global (cross document) data, you can simply store settings in static/shared member variables for your class.
Finally, if you're happy to use an installer that requires admin privileges to deploy your app, then you can make use of the Variable class from the Runtime namespace to create your own AutoCAD sysvars. (My recollection is that the registry data for this class has to be setup before AutoCAD launches, but you should check that).
Stephen Preston
Autodesk Developer Network
Re: Save command defaults
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
In our apps we have solved this by the default app.config of the dll.
In VS right-click on the Project -> Properties -> Settings.
That way you will store your settings and have them back when you start Acad again.
Then you insert in your code :
using [YourNamespace].Properties;
// start input gathering
PromptDoubleOptions LenghtOptions = new PromptDoubleOptions( "Enter lenght : " );
LenghtOptions.UseDefaultValue = true;
LenghtOptions.DefaultValue = Settings.Default.MyLenght;
PromptDoubleResult LenghtResult = Ed.GetDouble( LenghtOptions );
if ( LenghtResult.Status != PromptStatus.OK )
{
return;
}
Settings.Default.MyLenght= LenghtResult.Value;
Settings.Default.Save( );
Re: Save command defaults
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Thanks for the replies. That is exactly the information I needed. I am currently using Settings.Default.Save to persist between sessions, which seems more logical to the user rather than "start again". The code sample will help me tidy mine a little. Regards, Dale

