Hi!
Is it possible in Rhino Inside Revit to associate global parameter to family parameter, just like you do it in Revit by clicking equals mark next to any parameter value?
@Aleksander_Bachrouch you can do it using the API. The following video is about family parameters but same approach can be applied to Global Parameters
p = Element.LookupParameter(ParameterName)
gp = doc.GetElement(GlobalParametersManager.FindByName(doc, GlobalParameterName))
p.AssociateWithGlobalParameter(gp)
Thank you @MSAwan ![]()