GetTransmittalInfoInterface 方法 (ActiveX/ATO)
返回用于存储用于创建传递包的设置的信息对象。 支持的平台:仅限 Windows 命名空间:传输塔利布 程序集: acETransmit20.tlb 签名VB.NET: RetVal = object.getTransmittalInfoInterface() C#: RetVal = object.getTransmittalInfoInterface();
言论没有其他评论。 发行信息释放:AutoCAD 2005 及更高版本 历史
例子VB.NET: ' Custom command to create a transmittal package with a drawing file <CommandMethod("eTransmitDWGFile")> _ Public Shared Sub eTransmitDWGFile() ' Create a transmittal operation Dim tro As TransmittalOperation = New TransmittalOperation() ' Setup the transmittal behavior Dim ti As TransmittalInfo = _ TransInfo(tro.getTransmittalInfoInterface(), "C:\Users\Public\TransmittalAPITest\") ' Add a DWG file Dim tf As TransmittalFile = Nothing tro.addDrawingFile("C:\AutoCAD\Sample\Sheet Sets\Architectural\A-02.dwg", tf) ' Create the transmittal package ' Files are copied and resaved to the path specified by the destinationRoot property ' and the other settings of the TransmittalInfo object. tro.createTransmittalPackage() End Sub C#: // Custom command to create a transmittal package with a drawing file [CommandMethod("eTransmitDWGFile")] public static void eTransmitDWGFile() { // Create a transmittal operation TransmittalOperation tro = new TransmittalOperation(); // Setup the transmittal behavior TransmittalInfo ti = TransInfo(tro.getTransmittalInfoInterface(), "C:\\Users\\Public\\TransmittalAPITest\\"); // Add a DWG file TransmittalFile tf = null; tro.addDrawingFile("C:\\AutoCAD\\Sample\\Sheet Sets\\Architectural\\A-02.dwg", out tf); // Create the transmittal package // Files are copied and resaved to the path specified by the destinationRoot property // and the other settings of the TransmittalInfo object. tro.createTransmittalPackage(); } 相关参考 |
|Archiver|CAD开发者社区 ( 苏ICP备2022047690号-1 苏公网安备32011402011833)
GMT+8, 2024-12-15 13:07
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.