Revit 2026 API
Parameter |
Used to determine whether the element supports the given parameter.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 26.0.4.0 (26.0.4.0)
Syntax
public static bool IsParameterApplicable( Element element, ElementId parameter )
Public Shared Function IsParameterApplicable ( element As Element, parameter As ElementId ) As Boolean
public: static bool IsParameterApplicable( Element^ element, ElementId^ parameter )
static member IsParameterApplicable : element : Element * parameter : ElementId -> bool
Parameters
- element Element
- The element to query for support of the given parameter.
- parameter ElementId
- The parameter for which to query support.
Return Value
BooleanTrue if the element supports the given parameter, false otherwise.
| Exception | Condition |
|---|---|
| ArgumentNullException | A non-optional argument was null |
This operation is supported for external (e.g., shared, project)
parameters only.
See Also