ResetMovedLineTransform Method


Reset the transformation representing the movement of the line relative to its default position along the direction of the specified layer. The moved line transform will be set to Identity.

Namespace: Autodesk.Revit.DB.Structure
Assembly: RevitAPI (in RevitAPI.dll) Version: 24.0.0.0 (24.0.0.0)
Since:  2022

Syntax

C#
public void ResetMovedLineTransform(
	AreaReinforcementLayerType layer,
	int linePositionIndex
)
Visual Basic
Public Sub ResetMovedLineTransform ( _
	layer As AreaReinforcementLayerType, _
	linePositionIndex As Integer _
)
Visual C++
public:
void ResetMovedLineTransform(
	AreaReinforcementLayerType layer, 
	int linePositionIndex
)

Parameters

layer
Type: Autodesk.Revit.DB.StructureAreaReinforcementLayerType
The layer on which the line stays.
linePositionIndex
Type: SystemInt32
The index of the line from the desired layer. It should be an index between 0 and (NumberOfLines-1).

Exceptions

ExceptionCondition
Autodesk.Revit.ExceptionsArgumentOutOfRangeException linePositionIndex is not in the range [ 0, NumberOfLines-1 ]. -or- A value passed for an enumeration argument is not a member of that enumeration
Autodesk.Revit.ExceptionsInapplicableDataException The layer layer isn't active.
Autodesk.Revit.ExceptionsInvalidOperationException This AreaReinforcement does not host Rebar.

See Also