Revit 2025 API
Table |
Allows the caller to set combined parameter for a specified cell
Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.0.0.0 (25.0.0.0)
Syntax
public void SetCellCombinedParameters( int nRow, int nCol, IList<TableCellCombinedParameterData> paramData )
Public Sub SetCellCombinedParameters ( nRow As Integer, nCol As Integer, paramData As IList(Of TableCellCombinedParameterData) )
public: void SetCellCombinedParameters( int nRow, int nCol, IList<TableCellCombinedParameterData^>^ paramData )
member SetCellCombinedParameters : nRow : int * nCol : int * paramData : IList<TableCellCombinedParameterData> -> unit
Parameters
- nRow Int32
- nCol Int32
- paramData IListTableCellCombinedParameterData
| Exception | Condition |
|---|---|
| ArgumentException | The given row number nRow is invalid. -or- The given column number nCol is invalid. |
| ArgumentNullException | A non-optional argument was null |
See Also