Message 1 of 4
Revit 2024 'Other' Parameter Group
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
With the change over to ForgeTypeId and GroupTypeId in Revit 2024 instead of BuiltInParameterGroup enumerations, I just wanted to share how to define the 'Other' group for parameters as it doesn't appear to be documented.
Whereas previously you would use
BuiltInParameterGroup.INVALID
In 2024 and beyond you need to use
new ForgeTypeId(string.Empty)
Other groups can be found using the GroupTypeId class like GroupTypeId.Data
Hope this helps others searching for this.
Kevin