Built-in Parameter Group

Hi,
Can someone plaese help me on what to assign for the “Dimensions” parameter group. I tried PG_DIMENSIONS & PG_LENGTH but no luck.

Any help will be much appreciated.

1 Like

Hi @bvm76,

Try with PG_GEOMETRY.
https://www.revitapidocs.com/2016/9942b791-2892-0658-303e-abf99675c5a6.htm

4 Likes

Thanks guys for the help much appreciated. My graph now works the way I want it.

Does there happen to be a list somewhere that correlates the name shown in the drop-down menu with the built-in name?

Hello
try this with Python

import sys
import clr

clr.AddReference('RevitAPI')
import Autodesk
from Autodesk.Revit.DB import *

import System

listBPG = dict(zip(System.Enum.GetNames(BuiltInParameterGroup),System.Enum.GetValues(BuiltInParameterGroup)))
out = []
for name, bpg in listBPG.items():
    labelbpg = LabelUtils.GetLabelFor(bpg)
    out.append([labelbpg, name])

OUT = out
9 Likes