Add Method


Inserts a (key,info) pair into Export pattern table.

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

Syntax

C#
public void Add(
	ExportPatternKey exportPatternKey,
	ExportPatternInfo exportPatternInfo
)
Visual Basic
Public Sub Add ( _
	exportPatternKey As ExportPatternKey, _
	exportPatternInfo As ExportPatternInfo _
)
Visual C++
public:
void Add(
	ExportPatternKey^ exportPatternKey, 
	ExportPatternInfo^ exportPatternInfo
)

Parameters

exportPatternKey
Type: Autodesk.Revit.DB ExportPatternKey
The export pattern key to be added.
exportPatternInfo
Type: Autodesk.Revit.DB ExportPatternInfo
The export pattern info to be added.

Exceptions

Exception Condition
Autodesk.Revit.Exceptions ArgumentException The key already exists in the table.
Autodesk.Revit.Exceptions ArgumentNullException A non-optional argument was NULL

See Also