Description:
Inserts an arc at a given index of this list.
Syntax:
Parameters:
- index
- Type: System.Int32
- A 0-based position in the list.
- arc
- Type: Arc
- The arc value from which to construct the new curve.
Returns:
Type: Void
Available since:
5.0
Description:
Inserts a line at a given index of this list.
Syntax:
Parameters:
- index
- Type: System.Int32
- A 0-based position in the list.
- circle
- Type: Circle
- The circle value from which to construct the new curve.
Returns:
Type: Void
Available since:
5.0
Description:
Inserts an ellipse at a given index of this list.
Syntax:
Parameters:
- index
- Type: System.Int32
- A 0-based position in the list.
- ellipse
- Type: Ellipse
- The ellipse value from which to construct the new curve.
Returns:
Type: Void
Available since:
5.0
Description:
Inserts a polyline at a given index of this list.
Syntax:
public Void Insert(
Int32 index,
IEnumerable<Point3d> polyline
)
Int32 index,
IEnumerable<Point3d> polyline
)
Parameters:
- index
- Type: System.Int32
- A 0-based position in the list.
- polyline
- Type: IEnumerable<Point3d>
- The polyline enumerable from which to construct a copy curve. This argument can be null, an array, a list or any enumerable set of .
Returns:
Type: Void
Available since:
5.0