Download Here
copy ไปที่ c:\
และ แตกไฟล์ จะได้ Folder Turbostruct
และ ต้อง ลง Addin manager
และทำการ Load
การเรียกคำสั่งให้เรียกที่ External command หรือ รูป Icon DDD
ตัวอย่าง Code สำหร้บ Revit 2014
ตัวอย่าง Code สำหรับ Revit 2015
เรื่องของ Create
ในโปรแกรจะเป็น การ CreateColumn
จะมี Sub Method หรือโปรแกรมย่อย 4 โปรแกรม
1. FindElement ใว้สำหรับ ค้น Element ช่น เสา คานพื้น ชั้น ห้อง ที่อยู่ ใน Revit Project
2. getAllType เป็นการ นำ FamilySymbol ที่กำลังใช้งานอยู่ ใน Project เช่น เสาทั้งหมด มาใส่ Array ที่เป็น List
3.BatchCreateColumns เป็นการสร้าง Instant หรือวาง วัตถุ ลงไป ใน view โดยต้องกำหนด จุด XYZ
สำหรับ transaction จะควบคุมที่ CreateColumn
สำหรับ การ Edit หรือ แก้ไข
ตัวอย่าง ในการ เลือกและ Move
ตัวอย่าง
สำหรับการเลือก และดึงข้อมูลโดยใช้การเลือก ก่อนแล้วเรียกคำสั่ง
ตัวอย่าง
สำหรับ Revit 2015
Addin ไม่สามารถ Load ได้ ให้วางตรงๆ ใน Folder
C:\Users\<user>\AppData\Roaming\Autodesk\Revit\Addins\2015
file Addin ชอง DDD
และ Api จะเปลี่ยน หลายตัวโดยเฉพาะ Create ต่างๆ ที่เคยเป็น Method ใต้ Document จะเปลี่ยนไป
อยู่ใน Symbol นั้นๆ เช่น doc.newCreateLine เปลี่ยนเป็น Line.Create แทน ลองเดาดู หรือดูจาก SDK ของ Revit 2015 แต่จะเป็นระบบ และง่ายขึ้น
ผลของโปรแกรมตัวอย่าง
สำหรับ หัวของไฟล์ ใน c#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
using System.Windows.Forms;
using Autodesk.Revit.Creation;
using Autodesk.Revit.DB.Structure;
ข้อสำคัญอีกอย่าง คือ Revit ตำแหน่ง XYZ จะเป็นหน่วย ฟุต ไม่ใช่ เมตร ถ้าต้องเปลี่ยน ให้ หารด้วย0.3048
public static double f2m(double f)
{
return f*0.3048;
}
public static double m2f(double m)
{
return f/0.3048;
}
// text file ของ ExternalTool1.addin
<?xml version="1.0" encoding="utf-8"?>
<RevitAddIns>
<AddIn Type="Application">
<Name>External Tool</Name>
<Assembly>C:\turboStruct\DDDRevit.dll</Assembly>
<ClientId>3beb63b3-38f8-464b-a301-c30d239a69f6</ClientId>
<FullClassName>PowerAEC.PPToolbar</FullClassName>
<VendorId>ADSK</VendorId>
<VendorDescription>Autodesk, www.autodesk.com</VendorDescription>
</AddIn>
<AddIn Type="Command">
<Assembly>C:\turboStruct\DDDRevit.dll</Assembly>
<ClientId>54538ab4-83a1-4a5b-b172-1ffaa776b777</ClientId>
<FullClassName>PowerAEC.Command</FullClassName>
<Text>Command</Text>
<Description>""</Description>
<VisibilityMode>AlwaysVisible</VisibilityMode>
<VendorId>ADSK</VendorId>
<VendorDescription>Autodesk, www.autodesk.com</VendorDescription>
</AddIn>
<AddIn Type="Command">
<Assembly>C:\turboStruct\DDDRevit.dll</Assembly>
<ClientId>fb306864-2f47-427d-997f-68a17d625d06</ClientId>
<FullClassName>PowerAEC.showBook</FullClassName>
<Text>showBook</Text>
<Description>""</Description>
<VisibilityMode>AlwaysVisible</VisibilityMode>
<VendorId>ADSK</VendorId>
<VendorDescription>Autodesk, www.autodesk.com</VendorDescription>
</AddIn>
</RevitAddIns>
หมายเหตุ กรณี Error เมื่อเรียกใช้ DDD
error CS0012: The type 'System.Attribute' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.
ต้องเพิ่มใน Source code ตรงหัวโปรแกรม
using System;
using System.Collections;
using System.Collections.Generic;
//css_reference "System.Runtime"
{
return f/0.3048;
}
// text file ของ ExternalTool1.addin
<?xml version="1.0" encoding="utf-8"?>
<RevitAddIns>
<AddIn Type="Application">
<Name>External Tool</Name>
<Assembly>C:\turboStruct\DDDRevit.dll</Assembly>
<ClientId>3beb63b3-38f8-464b-a301-c30d239a69f6</ClientId>
<FullClassName>PowerAEC.PPToolbar</FullClassName>
<VendorId>ADSK</VendorId>
<VendorDescription>Autodesk, www.autodesk.com</VendorDescription>
</AddIn>
<AddIn Type="Command">
<Assembly>C:\turboStruct\DDDRevit.dll</Assembly>
<ClientId>54538ab4-83a1-4a5b-b172-1ffaa776b777</ClientId>
<FullClassName>PowerAEC.Command</FullClassName>
<Text>Command</Text>
<Description>""</Description>
<VisibilityMode>AlwaysVisible</VisibilityMode>
<VendorId>ADSK</VendorId>
<VendorDescription>Autodesk, www.autodesk.com</VendorDescription>
</AddIn>
<AddIn Type="Command">
<Assembly>C:\turboStruct\DDDRevit.dll</Assembly>
<ClientId>fb306864-2f47-427d-997f-68a17d625d06</ClientId>
<FullClassName>PowerAEC.showBook</FullClassName>
<Text>showBook</Text>
<Description>""</Description>
<VisibilityMode>AlwaysVisible</VisibilityMode>
<VendorId>ADSK</VendorId>
<VendorDescription>Autodesk, www.autodesk.com</VendorDescription>
</AddIn>
</RevitAddIns>
หมายเหตุ กรณี Error เมื่อเรียกใช้ DDD
error CS0012: The type 'System.Attribute' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.
ต้องเพิ่มใน Source code ตรงหัวโปรแกรม
using System;
using System.Collections;
using System.Collections.Generic;
//css_reference "System.Runtime"