Insert Method (Definition, Binding)


Creates a new parameter binding between a parameter and a set of categories.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 2015.0.0.0 (2015.0.0.0)

Syntax

C#
public override bool Insert(
	Definition key,
	Binding item
)
Visual Basic
Public Overrides Function Insert ( _
	key As Definition, _
	item As Binding _
) As Boolean
Visual C++
public:
virtual bool Insert(
	Definition^ key, 
	Binding^ item
) override

Parameters

key
Type: Autodesk.Revit.DB Definition
A parameter definition which can be an existing definition or one from a shared parameters file.
item
Type: Autodesk.Revit.DB Binding
An InstanceBinding or TypeBinding object which contains the set of categories to which the parameter should be bound.

Remarks

Note the type of the binding object dictates whether the parameter is bound to all instances or just types. A parameter definition cannot be bound to both instances and types. If the parameter binding already exists, post an error and return false.

See Also