You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### compare object members and element parameters values
41
56
42
57

43
58
59
+
60
+
61
+
44
62
### query Revit database with RDQ (Revit database querying)
45
63
46
-
RDQ is able to interpret words separated by `,` as element ids, Revit classes, categories, parameters and many more. RDQ builds from them FilteredElementCollector and uses it to query Revit database.
64
+
RDQ is capable of to interpret words separated by `,` as element ids, Revit classes, categories, parameters and many more. RDQ builds from them FilteredElementCollector and uses it to query Revit database.
47
65
48
66
[Learn more about Revit database querying (RDQ).](documentation/revit-database-querying.md)
### script Revit database with RDS (Revit database scripting)
53
73
54
-
RDS is intended to compile and run C# code that is too small or ephemeral to make macro/dynamo/addon for it. RDS offers the quickest way to run C# code generated with generative AI chats (such as ChatGPT).
74
+
RDS is able to compile and run C# code that is too small or ephemeral to make macro/dynamo/addon for it. RDS offers the quickest way to run C# code generated with generative AI chats (such as ChatGPT).
55
75
56
76
[Learn more about Revit database scripting (RDS).](documentation/revit-database-scripting.md)
We all love (or hate) the ForgeTypeId, Revit database explorer exposes all data related to a given ForgeTypeId scattered through many utils. You can also snoop all ForgeTypeIds returned from:
@@ -95,29 +120,24 @@ ForgeTypeId label corresponds to static properties defined on:
Revit database explorer allows you to snoop all schemas that are loaded into Revit memory, and you can easily get all elements that have an entity of a given schema. You get access to Extensible Storage data exactly like through RevitAPI, by invoking: Element.GetEntity().
### snoop Revit events with REM (Revit Event Monitor)
118
139
119
140
A new take on [EventsMonitor from RevitSdkSamples
120
141
](https://github.com/jeremytammik/RevitSdkSamples/tree/master/SDK/Samples/Events/EventsMonitor/CS). Revit database explorer stores the latest 30 events that occurred during Revit session and allows to snoop them. UIControlledApplication.Idling event and ControlledApplication.ProgressChanged events are not stored because they are too noisy - they happen too often. In order to use this feature, you need to enable event monitor, which by default is disabled.
0 commit comments