Element.LookupParameter Method

ElementLookupParameter Method

Attempts to find a parameter on the element which has the given name.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public Parameter LookupParameter(
	string name
)
Public Function LookupParameter ( 
	name As String
) As Parameter
public:
Parameter^ LookupParameter(
	String^ name
)
member LookupParameter : 
        name : string -> Parameter 

Parameters

name  String
The name of the parameter to be retrieved.

Return Value

Parameter
The matching parameter. This return may be if there is no matching parameter. If there are multiple matching parameters the first one found is returned.
Remarks
This method will attempt to find a parameter on this Element whose name matches the input. The possible results include:
  • A single matching parameter is found: it will be returned.
  • No matching parameter is found: is returned.
  • Multiple matching parameters exist. In this situation the first one encountered will be returned. This match is determined at random and may change in the future.

Multiple matches of parameters with the same name can occur because shared parameters or project parameters can be bound to an element category even if there is a built-in parameter with the same name already.

If this method is used to find built-in parameters the code will not be portable to other languages of Revit (because built-in parameter names are translated, and this method matches the translation).

For the reasons above this method should be used sparingly and only when you have a reasonable expectation that only one parameter exists with the given name, and when portability across multiple languages is not a requirement.

Safer approaches include:

  • GetParameters(String) to get all the matches with the given name.
  • get_Parameter(Guid) to get a shared parameter by stored guid.
  • get_Parameter(BuiltInParameter) to find a built-in parameter in a language-independent way.
See Also