DateMotionCollection<T>.InsertItem Method (Int32, JulianDate,T[]) |
Inserts an item at a particular index.
Namespace:
AGI.Foundation
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic void InsertItem(
int index,
JulianDate date,
params T[] values
)
Public Sub InsertItem (
index As Integer,
date As JulianDate,
ParamArray values As T()
)
public:
void InsertItem(
int index,
JulianDate date,
... array<T>^ values
)
member InsertItem :
index : int *
date : JulianDate *
values : 'T[] -> unit
Parameters
- index
- Type: System.Int32
The index of the item to insert. - date
- Type: AGI.Foundation.Time.JulianDate
The date for the item. - values
- Type:T[]
The values for the item.
See Also