Spread Windows Forms 17
FarPoint.Win.Chart Assembly / FarPoint.Win.Chart Namespace / DetachmentCollection Class / InsertRange Method
Index at which items should be inserted.
Array of Single values.


In This Topic
    InsertRange Method (DetachmentCollection)
    In This Topic
    Inserts an array of Single values into the collection at the specified index.
    Syntax
    'Declaration
     
    
    Public Sub InsertRange( _
       ByVal index As Integer, _
       ByVal items() As Single _
    ) 
    'Usage
     
    
    Dim instance As DetachmentCollection
    Dim index As Integer
    Dim items() As Single
     
    instance.InsertRange(index, items)
    public void InsertRange( 
       int index,
       float[] items
    )

    Parameters

    index
    Index at which items should be inserted.
    items
    Array of Single values.
    Exceptions
    ExceptionDescription
    items is a null reference (Nothing in VB).
    some value in items is less than zero or is greater than 4.
    See Also