-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRevitStuff.cs
74 lines (58 loc) · 1.73 KB
/
RevitStuff.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
using System.Collections.Generic;
using System.Windows.Forms;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
namespace Parameter_Jerk_2018
{
public class RevitStuff
{
#region Properties
public List<FamilyParameter> AllParametersFromFamilyMan
{
get
{
List<FamilyParameter> toReturn = new List<FamilyParameter>();
foreach (FamilyParameter familyParameter in FamilyManager.Parameters)
{
toReturn.Add(familyParameter);
}
return toReturn;
}
}
public ExternalCommandData CommandData { get; set; }
public Document Doc
{
get { return CommandData.Application.ActiveUIDocument.Document; }
set { MessageBox.Show("need to handle this"); }
}
public FamilyManager FamilyManager
{
get { return Doc.FamilyManager; }
}
public UIApplication Ptr2UiApp
{
get { return CommandData.Application; }
}
public string RevitVersionNumberStr
{
get { return Doc.Application.VersionNumber; }
}
public DefinitionFile SharedParameterFile
{
get { return Doc.Application.OpenSharedParameterFile(); }
}
#endregion
#region Methods
public RevitStuff(ExternalCommandData commandData)
{
this.CommandData = commandData;
}
public Transaction NewTransaction(string name)
{
Transaction toReturn = new Autodesk.Revit.DB.Transaction(Doc);
toReturn.SetName(name);
return toReturn;
}
#endregion
}
}