管理员可以自定义 AutoCAD 配置文件中的特性,以便 AutoCAD DWG 特性自动与 Vault 特性保持同步。
DWG 特性的同步由名为 SyncDWGProperty 的 PropertyDefinition 属性决定。该属性定义了是同步 DWG 特性还是使用在“Data Standard”对话框中输入的值创建 DWG 特性。
DWG 特性是在 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>
标准 DWG 特性
不能将 DWG 特性映射到同名的自定义特性。
如果 Data Standard 数据表中使用了这些特性,“Data Standard”对话框中将会显示相应的值。

行为