FilteredElementCollector collector = new FilteredElementCollector(doc);
collector.OfCategory(BuiltInCategory.OST_TitleBlocks);
collector.WhereElementIsElementType();
//Get ElementId of first title block type.
Dictionary<string,ElementId> datas =
collection.AsEnumerable().ToDictionary(x=>x.ToString(),y=>y);
listBox1.DataSource = new BindingSource(datas, null);
listBox1.DisplayMember = "Value";
listBox1.ValueMember = "Key";
เมื่อเลือก ที่ Selection
จะเป็น SelectedValue แต่ต้อง ใช้ เป็น
ElementId id =SelectedValue as ElementId;
ไม่มีความคิดเห็น:
แสดงความคิดเห็น