ExportPatternTable.Add Method

ExportPatternTableAdd Method

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

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public void Add(
	ExportPatternKey exportPatternKey,
	ExportPatternInfo exportPatternInfo
)
Public Sub Add ( 
	exportPatternKey As ExportPatternKey,
	exportPatternInfo As ExportPatternInfo
)
public:
void Add(
	ExportPatternKey^ exportPatternKey, 
	ExportPatternInfo^ exportPatternInfo
)
member Add : 
        exportPatternKey : ExportPatternKey * 
        exportPatternInfo : ExportPatternInfo -> unit 

Parameters

exportPatternKey  ExportPatternKey
The export pattern key to be added.
exportPatternInfo  ExportPatternInfo
The export pattern info to be added.
Exceptions
ExceptionCondition
ArgumentException The key already exists in the table.
ArgumentNullException A non-optional argument was null
See Also