The IEdmDictionary5
interface in the SOLIDWORKS PDM API provides a convenient and secure way to store and retrieve settings. These settings can be specific to your add-in or user, and they are protected by the PDM vault’s login system.
Advantages
- Secure Storage: Data is tied to the PDM vault and secured by the user’s login credentials.
- Add-In-Specific Settings: Use a unique key to isolate settings for your add-in.
- User-Specific Settings: Make settings unique to each user by appending the username to the key.
Visual Basic
1 2 3 4 5 6 7 8 9 10 11 12 13 |
/// Get the vault object and dictionary IEdmVault5 vault = /* Get your vault object */; IEdmDictionary5 dictionary = vault.GetDictionary("MyAddInDictionary", true); // Serialize your settings to a JSON string string jsonSettings = JsonConvert.SerializeObject(new { Theme = "Dark", AutoSaveInterval = 10 }); // Use a key to identify the setting string addInKey = "MyAddIn_Settings"; // Store the serialized JSON string in the dictionary dictionary.StringSetAt(addInKey, jsonSettings); |
Retrieving Settings
To retrieve the stored settings, use the StringGetAt
method:
Visual Basic
1 2 3 4 5 6 |
// Retrieve the JSON string from the dictionary string retrievedJsonSettings; dictionary.StringGetAt(addInKey, out retrievedJsonSettings) // Deserialize the JSON string back into an object var settings = JsonConvert.DeserializeObject<dynamic>(retrievedJsonSettings); |
User-Specific Settings
You can create user-specific settings by appending the username to the dictionary key:
Visual Basic
1 2 |
string userSpecificKey = $"MyAddIn_Settings_{vault.CurrentUser.Name}"; dictionary.StringSetAt(userSpecificKey, jsonSettings); |
Best Practices
- Use Descriptive Keys: Clearly define your dictionary keys to avoid conflicts.
- Validate Data: Ensure your JSON strings are valid before storing them.
- Avoid Excessive Use: Reserve the dictionary store for data that needs to be secure or specific to the PDM environment.
- Secure Storage: Data is tied to the PDM vault and secured by the user’s login credentials.
- Add-In-Specific Settings: Use a unique key to isolate settings for your add-in.
- User-Specific Settings: Make settings unique to each user by appending the username to the key.