Is it possible to create new Parameter Group?

I want to create new parameter group.I have some project parameter under General group,want to group them under new parameter group named “EDI”.

Hi @bikashseas

You don’t need Dynamo for this. Its easy in Revit Just select the parameters and click on “Move” to move your parameters.

@Kulkul

1 Like

@bikashseas I don’t think its possible.

1 Like

I want to know if I can extract the parameter group list at least …

import clr
clr.AddReference(‘ProtoGeometry’)
from Autodesk.DesignScript.Geometry import *
clr.AddReference(“RevitServices”)
import RevitServices
from RevitServices.Persistence import DocumentManager
from RevitServices.Transactions import TransactionManager
clr.AddReference(“RevitAPI”)
import Autodesk
from Autodesk.Revit.DB import *
import System

#Assign your output to the OUT variable
OUT = System.Enum.GetValues(BuiltInParameterGroup)

1 Like

Hi,
Thank you for your reply but I don’t realy know how I can use it.
Put it into the node of phython script or something?
If you can give me little more details I would appreciate it.

Best.
Yuki

1 Like
import clr
clr.AddReference('ProtoGeometry')
from Autodesk.DesignScript.Geometry import *

# Import DocumentManager and TransactionManager
clr.AddReference("RevitServices")
import RevitServices
from RevitServices.Persistence import DocumentManager
from RevitServices.Transactions import TransactionManager

# Import RevitAPI
clr.AddReference("RevitAPI")
import Autodesk
from Autodesk.Revit.DB import *
import System

#Assign your output to the OUT variable
OUT = System.Enum.GetValues(BuiltInParameterGroup) 

Copy and paste above codes inside python script.Just run it.
Enjoy
image

2 Likes

Hi, where did you add the new parameters group in the script?

Hi, did it work? I do not see where and how you can add new groups to the list. Let me know please!

No,its not possible

Hello,its not possible…

you miss understood the question!!