• Tekla查询零件


    using System;
    using System.Collections;
    using System.Collections.Generic;
    using System.Windows.Forms;
    using Tekla.Structures;
    using Tekla.Structures.Catalogs;
    using Tekla.Structures.Drawing;
    using Tekla.Structures.Filtering;
    using Tekla.Structures.Filtering.Categories;
    using Tekla.Structures.Geometry3d;
    using Tekla.Structures.Model;
    using Part = Tekla.Structures.Model.Part;

    namespace Exercise
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
                MyModel = new Model();
            }

            private readonly Model MyModel;

            private void button2_Click(object sender, EventArgs e)
            {
                if (MyModel.GetConnectionStatus())
                {
                if (MyModel.GetConnectionStatus())
                {
                    ModelObjectEnumerator.AutoFetch = true;
                    var beams = MyModel.GetModelObjectSelector().GetAllObjectsWithType(new Type[] { typeof(Beam) });

                    int i = 0;
                    while (beams.MoveNext())
                    {
                        var beam = beams.Current as Beam;

                        Console.WriteLine("Beam: ");
                        Console.WriteLine(beam.Name);
                        Console.WriteLine(beam.Profile.ProfileString);
                        Console.WriteLine(beam.StartPoint);
                        Console.WriteLine($"AssemblyNumber:{beam.AssemblyNumber.Prefix}-{beam.AssemblyNumber.StartNumber}");
                        Console.WriteLine();
                        i++;
                        if (i == 5) break;
                    }
                }
            }
        }
    }

  • 相关阅读:
    亚信面试题
    2022年8月叙利亚再次因国考全国断网
    python作图
    2023年香水行业数据分析:国人用香需求升级,高端香水高速增长
    Linux TCP和UDP协议
    USB Composite 组合设备之麦克风与扬声器
    【头歌C语言程序设计】指针及其应用
    编译原理—计算三地址码、布尔语句翻译
    Nginx介绍
    ODrive移植keil(三)—— USB虚拟串口和快速正弦余弦运算
  • 原文地址:https://blog.csdn.net/qq_16215957/article/details/126896537