GetOrCreateRebarContainerType Method


Creates or returns a RebarContainerType object with a given name.

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

Syntax

C#
public static ElementId GetOrCreateRebarContainerType(
	Document aDoc,
	string name
)
Visual Basic
Public Shared Function GetOrCreateRebarContainerType ( _
	aDoc As Document, _
	name As String _
) As ElementId
Visual C++
public:
static ElementId^ GetOrCreateRebarContainerType(
	Document^ aDoc, 
	String^ name
)

Parameters

aDoc
Type: Autodesk.Revit.DB Document
The document.
name
Type: System String
Name of the type.

Return Value

The type id.

Exceptions

Exception Condition
Autodesk.Revit.Exceptions ArgumentException name is an empty string.
Autodesk.Revit.Exceptions ArgumentNullException A non-optional argument was NULL

See Also