Map AutoCAD DWG Properties in Data Standard with the SyncDWGProperty Attribute

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.

Note: See Modify the CAD Configuration File for Data Standard for more information about property definitions and the AutoCAD configuration file.

SyncDWGProperty Attribute

The SyncDWGProperty attribute is boolean and is used in combination with most Standard DWG Properties.
<?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

Behavior