CAD开发者社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

AutoCAD 2025 开发者帮助

TotalBytes 属性 (ActiveX/ATO)

2024-5-18 19:24| 发布者: admin| 查看: 141| 评论: 0|原作者: admin|来自: AutoCAD

TotalBytes 属性 (ActiveX/ATO)

返回传递集中所有文件的总大小(以字节为单位)。

支持的平台:仅限 Windows

命名空间:传输塔利布

程序集: acETransmit20.tlb

签名

VBA/VB.NET:

object.totalBytes(bIncludedFilesOnly)

C#:

object.get_totalBytes(bIncludedFilesOnly);
对象

类型:TransmittalFilesGraph

此属性应用于的对象。

bIncludedFilesOnly

访问:仅输入

类型:整数

  • 0 ():汇总传递图中所有文件的文件大小False
  • 1 ():传递集中属性设置为TrueIncludeInTransmittalTrue

属性值

只读:是的

类型:不支持的变体类型

所有文件的总字节数。

言论

没有其他评论。

发行信息

释放:AutoCAD 2004 及更高版本

历史

  • 该界面已与 AutoCAD 2010 版库中的界面合并。ITransmittalFilesGraph2ITransmittalFilesGraph
  • 该属性还随 AutoCAD 2005 版库中的界面一起引入。totalBytesITransmittalFilesGraph2
  • 该特性最初是在 AutoCAD 2004 版库中随界面引入的,但被标记为仅供 Autodesk 内部使用。totalBytesITransmittalFilesGraph

例子

VB.NET:

' Custom command that lists the file dependents
<CommandMethod("FileDependents")> _
Public Shared Sub FileDependents()
    ' 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\")

    ' Define file to add to the transmittal
    Dim tf As TransmittalFile = Nothing
    Dim dwgFile As String = "C:\AutoCAD\Sample\Sheet Sets\Architectural\A-01.dwg"

    ' Add file to transmittal and parse its information
    If tro.addDrawingFile(dwgFile, tf) = AddFileReturnVal.eFileAdded Then
        ' Get each of the referenced files in the file being added
        Dim tfg As TransmittalFilesGraph = tro.graphInterfacePtr()
        Dim rootTF As TransmittalFile = tfg.getRoot()

        ' Get the current editor
        Dim acEditor As Editor = Application.DocumentManager.MdiActiveDocument.Editor

        ' Output information about the overall size of the files in the transmittal graph
        acEditor.WriteMessage(Environment.NewLine & "Total Bytes: " & tfg.totalBytes(vbTrue).ToString())

        Dim tfList As New List(Of TransmittalFile)()
        tfList.Add(rootTF)

        ' Step through each of the referenced files identified
        While tfList.Count > 0
            tf = tfList(0)
            tfList.RemoveAt(0)

            Dim numberOfDependents As Integer = tf.numberOfDependents
            For i As Integer = 0 To numberOfDependents - 1
                Dim childTF As TransmittalFile = tf.getDependent(i)
                tfList.Add(childTF)

                ' Output the source path of the child in the transmittal graph
                acEditor.WriteMessage(Environment.NewLine + "Dependent file name: " & childTF.sourcePath)

                ' See if the dependent file is a drawing or not
                If System.IO.Path.GetExtension(childTF.sourcePath).ToUpper() = ".DWG" Then
                    ' Get the database of the drawing
                    Dim acDb As AcadDatabase = childTF.database

                    ' If the drawing is not null, display the name sof the layers in the drawing
                    If Not acDb Is Nothing Then
                        acEditor.WriteMessage(Environment.NewLine & "Layer Names:")

                        ' Step through each of the layers
                        For Each acLyr As AcadLayer In acDb.Layers
                            ' Output the names of each layer
                            acEditor.WriteMessage(Environment.NewLine & "  " & acLyr.Name)
                        Next
                    End If
                End If
            Next
        End While
    End If
End Sub

C#:

// Custom command that lists the file dependents
[CommandMethod("FileDependents")]
public static void FileDependents()
{
    // Create a transmittal operation
    TransmittalOperation tro = new TransmittalOperation();

    // Setup the transmittal behavior
    TransmittalInfo ti = TransInfo(tro.getTransmittalInfoInterface(), @"C:\Users\Public\TransmittalAPITest\");

    // Define file to add to the transmittal
    TransmittalFile tf = null;
    string dwgFile = @"C:\AutoCAD\Sample\Sheet Sets\Architectural\A-01.dwg";

    // Add file to transmittal and parse its information
    if (tro.addDrawingFile(dwgFile, out tf) == AddFileReturnVal.eFileAdded)
    {
        // Get each of the referenced files in the file being added
        TransmittalFilesGraph tfg = tro.graphInterfacePtr();
        TransmittalFile rootTF = tfg.getRoot();

        // Get the current editor
        Editor acEditor = Application.DocumentManager.MdiActiveDocument.Editor;

        // Output information about the overall size of the files in the transmittal graph
        acEditor.WriteMessage(Environment.NewLine + "Total Bytes: " + tfg.get_totalBytes(1).ToString());

        List<TransmittalFile> tfList = new List<TransmittalFile>();
        tfList.Add(rootTF);

        // Step through each of the referenced files identified
        while (tfList.Count > 0)
        {
            tf = tfList[0];
            tfList.RemoveAt(0);

            int numberOfDependents = tf.numberOfDependents;
            for (int i = 0; i <= numberOfDependents - 1; i++)
            {
                TransmittalFile childTF = tf.getDependent(i);
                tfList.Add(childTF);

                // Get the current editor
                acEditor.WriteMessage(Environment.NewLine + "Dependent file name: " + childTF.sourcePath);

                // See if the dependent file is a drawing or not
                if (System.IO.Path.GetExtension(childTF.sourcePath).ToUpper() == ".DWG")
                {
                    // Get the database of the drawing
                    AcadDatabase acDb = childTF.database;

                    // If the drawing is not null, display the name sof the layers in the drawing
                    if (acDb != null)
                    {
                        acEditor.WriteMessage(Environment.NewLine + "Layer Names:");

                        // Sstep through each of the layers
                        foreach (AcadLayer acLyr in acDb.Layers)
                        {
                            // Output the names of each layer
                            acEditor.WriteMessage(Environment.NewLine + "  " + acLyr.Name);
                        }
                    }
                }
            }
        }
    }
}

路过

雷人

握手

鲜花

鸡蛋

最新评论

QQ|Archiver|CAD开发者社区 ( 苏ICP备2022047690号-1   苏公网安备32011402011833)

GMT+8, 2025-3-5 18:05

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

返回顶部