Move the circuits in the source slot to the specific slot.
Namespace: Autodesk.Revit.DB.Electrical
Assembly: RevitAPI (in RevitAPI.dll) Version: 18.0.0.0 (18.2.0.13)
Syntax
C# |
---|
public void MoveSlotTo(
int nMovingRow,
int nMovingCol,
int nToRow,
int nToCol
) |
Visual C++ |
---|
public:
void MoveSlotTo(
int nMovingRow,
int nMovingCol,
int nToRow,
int nToCol
) |
Remarks
Exceptions
Exception | Condition |
---|
Autodesk.Revit.Exceptions..::..ArgumentOutOfRangeException |
The given row number nMovingRow is invalid in Body.
-or-
The given column number nMovingCol is invalid in Body.
-or-
The given row number nToRow is invalid in Body.
-or-
The given column number nToCol is invalid in Body.
-or-
There is no circuit at given cell (nMovingRow, nMovingCol).
-or-
Cannot move the circuits at slot (nMovingRow, nMovingCol) to given slot (nToRow, nToCol).
|
See Also