GetAffectedGlobalParameters Method


Returns all other global parameters which refer to this global parameter in their formulas.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 16.0.0.0 (16.0.0.0)
Since: 2016 Subscription Update

Syntax

C#
public ISet<ElementId> GetAffectedGlobalParameters()
Visual Basic
Public Function GetAffectedGlobalParameters As ISet(Of ElementId)
Visual C++
public:
ISet<ElementId^>^ GetAffectedGlobalParameters()

Return Value

Collection of Element Ids.

Remarks

The method returns other global parameters that directly (in their formulas) refer to this parameter. For example, if P1 refers to P0 (e.g. [= 2.5 * P0]), and P2 refers to P1 (e.g. [= P1 + 3.14]), then the set of parameters affected directly by P0 would only contain one parameter - P1. Naturally, be using this method repeatedly, firts on P0 and then P1 (assuming the above example), the programmer can eventually collect all depending global parameters, whether they refer to P0 directly or indirectly.

See Also