Create Method (Document, FabricationServiceButton, Int32, ElementId)


Creates a fabrication part element based on button.

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

Syntax

C#
public static FabricationPart Create(
	Document document,
	FabricationServiceButton button,
	int condition,
	ElementId levelId
)
Visual Basic
Public Shared Function Create ( _
	document As Document, _
	button As FabricationServiceButton, _
	condition As Integer, _
	levelId As ElementId _
) As FabricationPart
Visual C++
public:
static FabricationPart^ Create(
	Document^ document, 
	FabricationServiceButton^ button, 
	int condition, 
	ElementId^ levelId
)

Parameters

document
Type: Autodesk.Revit.DB Document
The document.
button
Type: Autodesk.Revit.DB FabricationServiceButton
The fabrication service button to use.
condition
Type: System Int32
The condition index.
levelId
Type: Autodesk.Revit.DB ElementId
The level identifier.

Return Value

The new fabrication part.

Exceptions

Exception Condition
Autodesk.Revit.Exceptions ArgumentException Please use FabricationPart.CreateHanger to create fabrication hanger.
Autodesk.Revit.Exceptions ArgumentNullException A non-optional argument was NULL
Autodesk.Revit.Exceptions ArgumentOutOfRangeException the index condition is not larger or equal to 0 and less than ConditionCount

See Also