Administrators can customize properties in the AutoCAD configuration file so that AutoCAD DWG Properties automatically sync with Vault properties.
DWG Properties sync based on a PropertyDefinition attribute called SyncDWGProperty. This attribute defines whether DWG properties are synced or created with the value entered in the Data Standard dialog.
The properties are defined in C:\ProgramData\Autodesk\Vault 2015\Extensions\DataStandard\CAD\Configuration\AutoCAD.cfg.
<?xml version="1.0" encoding="utf-8"?> <Configuration> <PathDefinition>{Workspace}\{Prop[Folder].Value}</PathDefinition> <FileNameDefinition>{Prop[GEN-TITLE-NR].Value}</FileNameDefinition> <PropertyDefinitions> <PropertyDefinition PropertyName="GEN-TITLE-NR" DataType="Text" InitialValue="{PathAndFileNameHandler.FileName}" /> <PropertyDefinition PropertyName="GEN-TITLE-DES1" DataType="Text" RequiresValue="true" /> <PropertyDefinition PropertyName="GEN-TITLE-DES2" DataType="Text" /> <PropertyDefinition PropertyName="Folder" DataType="Text" InitialValue="Assemblies" RequiresValue="true"/> <PropertyDefinition PropertyName="Comments" DataType="Text" SyncDWGProperty="true"/> </PropertyDefinitions> <TitleBlock>ISO_TITLEA</TitleBlock> </Configuration>
Standard DWG Properties
A DWG property cannot be mapped to a custom property with the same name.
If these properties are used in the Data Standard datasheet, the values appear in that dialog.
Behavior