Revit 2026 API
MEPAnalytical |
Finds the analytical connection type by its name.
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 26.0.4.0 (26.0.4.0)
Syntax
public static ElementId FindTypeByName( Document doc, string name )
Public Shared Function FindTypeByName ( doc As Document, name As String ) As ElementId
public: static ElementId^ FindTypeByName( Document^ doc, String^ name )
static member FindTypeByName : doc : Document * name : string -> ElementId
Parameters
- doc Document
- The document where the analytical conneciton type is expected.
- name String
- The name of the expected analytical connection type.
Return Value
ElementIdThe element id of matched analytical connection type, otherwise invalidElementId.
| Exception | Condition |
|---|---|
| ArgumentException | name is an empty string. |
| ArgumentNullException | A non-optional argument was null |
See Also