Description:

Inserts an arc at a given index of this list.

Syntax:
public void Insert(
int index,
Arc arc
)
Parameters:
  • index
  • Type: int
  • 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:
public void Insert(
int index,
Circle circle
)
Parameters:
  • index
  • Type: int
  • 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:
public void Insert(
int index,
Ellipse ellipse
)
Parameters:
  • index
  • Type: int
  • 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(
int index,
IEnumerable<Point3d> polyline
)
Parameters:
  • index
  • Type: int
  • 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

Description:

Inserts a line at a given index of this list.

Syntax:
public void Insert(
int index,
Line line
)
Parameters:
  • index
  • Type: int
  • A 0-based position in the list.
  • line
  • Type: Line
  • The line value from which to construct the new curve.
Returns:
Type: void
Available since:
5.0

Nothing found