Revit 2025.3 API
Change |
Creates a ChangeType that is a union of the two input ChangeTypes
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public static ChangeType ConcatenateChangeTypes( ChangeType changeType1, ChangeType changeType2 )
Public Shared Function ConcatenateChangeTypes ( changeType1 As ChangeType, changeType2 As ChangeType ) As ChangeType
public: static ChangeType^ ConcatenateChangeTypes( ChangeType^ changeType1, ChangeType^ changeType2 )
static member ConcatenateChangeTypes : changeType1 : ChangeType * changeType2 : ChangeType -> ChangeType
Parameters
- changeType1 ChangeType
- First input ChangeType to be concatenated
- changeType2 ChangeType
- Second input ChangeType to be concatenated
Return Value
ChangeTypeA new ChangeType that is a concatenation/union of the input change types
| Exception | Condition |
|---|---|
| ArgumentNullException | A non-optional argument was null |
See Also