配置生命周期定义和 PDF 选项以从二维 CAD 文件发布 PDF。
如果您没有足够的权限在 PDF 文件上设置特定状态(例如 您无权修改已发布状态),则同步状态作业会失败。
这会将 PDF 生成为选定文件的附件。此外,PDF 的缩略图将显示在“预览”选项卡中。
可以通过编辑 Job Processor 的配置文件 JobProcessor.exe.config 来影响 PDF 输出文件名。支持以下操作:
| 键 | 结果 |
|---|---|
| <add key="DesignRepresentation.Naming" value="\.(idw)$/<_name_>"/> | Flower.pdf |
| <add key="DesignRepresentation.Naming" value="\.(idw)$/Prefix<_name_>"/> | PrefixFlower.pdf |
| <add key="DesignRepresentation.Naming" value="\.(idw)$/<_name_>Suffix"/> | FlowerSuffix.pdf |
| <add key="DesignRepresentation.Naming" value="\.(idw)$/Prefix<_name_>Suffix"/> | PrefixFlowerSuffix.pdf |
| <add key="DesignRepresentation.Naming" value="\.(idw)$/<_name_><Revision>"/> | FlowerB.pdf where Revision=B |
| <add key="DesignRepresentation.Naming" value="\.(idw)$/<_name_ ><Provider>"/> | FlowerAutoCAD.pdf where Provider=AutoCAD |
| <add key="DesignRepresentation.Naming" value="\.(idw)$/<_name_ ><DateVersionCreated>"/>
<add key="DesignRepresentation.Naming.DateFormat" value="dd-MM-yy"/>
注: 添加这两行内容。使用 dd=日期、MM=月份、yy=年份的形式设置日期格式。(MM 必须大写)
|
Flower27-10-17.pdf,即表示该版本的创建日期为 2017 年 10 月 27 日 |
只能为 Design.Represenation.Naming 添加一行,根据需要合并规则,用斜线将每个分隔开。例如:
<add key="DesignRepresentation.Naming" value="\.(dwg)$/<_name_><Provider> / \.(idw)$/<_name_><Revision>"/>