Checks if given element id is valid level element.
Namespace: Autodesk.Revit.DB.Plumbing
Assembly: RevitAPI (in RevitAPI.dll) Version: 19.0.0.0 (19.0.0.405)
Since:
2014
Syntax
| C# |
|---|
[ObsoleteAttribute("This method is deprecated in Revit 2019 and will be removed in the next version of Revit. Get the 'Autodesk.Revit.DB.Element' and check if its type is 'Autodesk.Revit.DB.Level' instead.")]
public static bool IsLevelId(
Document document,
ElementId levelId
) |
| Visual Basic |
|---|
<ObsoleteAttribute("This method is deprecated in Revit 2019 and will be removed in the next version of Revit. Get the 'Autodesk.Revit.DB.Element' and check if its type is 'Autodesk.Revit.DB.Level' instead.")> _
Public Shared Function IsLevelId ( _
document As Document, _
levelId As ElementId _
) As Boolean |
| Visual C++ |
|---|
[ObsoleteAttribute(L"This method is deprecated in Revit 2019 and will be removed in the next version of Revit. Get the 'Autodesk.Revit.DB.Element' and check if its type is 'Autodesk.Revit.DB.Level' instead.")]
public:
static bool IsLevelId(
Document^ document,
ElementId^ levelId
) |
Return Value
True if the given level id is valid, false otherwise.
Exceptions
See Also