There is a unique configuration file for AutoCAD and for Inventor.
There are two CAD configuration files for the Data Standard Add-in.
You can find both of these files in C:\ProgramData\Autodesk\Vault 2014\Extensions\DataStandard\CAD\Configuration
The configuration file is an XML. Use a text editor or an XML editor to modify element values in the file.
Samples
<FileNameDefinition>{Prop[TITLE].Value}</FileNameDefinition>The file name is generated out of the value of the property title.
<FileNameDefinition>{Prop[YEAR].Value}_{Prop[NUMBER].Value}</FileNameDefinition>The file name is generated out of the combination of the properties YEAR and NUMBER with an underscore between.
Samples
<PathDefinition>{Workspace}\{Prop[PROJECT].Value}</PathDefinition>In this sample, the path generated by Data Standard is the workspace folder set in the application plus the project name selected or entered into the Data Standard dialog. As the workspace will not change, this part is fixed, while the project path changes depending on the user data.
All the fields that will be accessible in the Data Standard dialog as a property must be defined here. The name of the property is also the name of the file or title-block property. If the property name matches an existing file property, such as title, then this file property is used. Otherwise a custom property is created. The only exception to this rule is AutoCAD. When AutoCAD synchronizes properties, it does so from Data Standard to the title-block attributes, not to the file attributes.
Property |
Required |
Description |
Supported Values |
---|---|---|---|
PropertyName |
Yes |
the name of the property |
characters and numbers |
DataType |
Yes |
defines the data type |
text, date, number, double, boolean |
InitialValue |
No |
defines which value should be filled the first time |
any text |
RequiresValue |
No |
defines whether the field must contain a value or not |
true, false |
Regex |
No |
defines a regular expression for controlling user entry |
regex syntax |
Sample
<SkipForProperties>CDN_B</SkipForProperties>