Curve2dCollectionInsert Method
|
Inserts the specified curve to the collection
at the provided index.
Namespace: Teigha.Geometry
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public void Insert(
int index,
Curve2d value
)
Public Sub Insert (
index As Integer,
value As Curve2d
)
public:
void Insert(
int index,
Curve2d^ value
)
member Insert :
index : int *
value : Curve2d -> unit
Parameters
- index Int32
- [in] Index at which to insert the curve.
- value Curve2d
- [in] Curve to insert.
Remarks
This method throws
the ArgumentOutOfRangeException exception if the provided index is
invalid.
See Also