Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / IntervalBitmap Class / Copy Method
The IntervalArray that contains the data to copy.
A 32-bit integer that represents the index in the source at which copying begins.
The IntervalArray that receives the data.
A 32-bit integer that represents the index in the target at which storing begins.
A 32-bit integer that represents the number of elements to copy.


In This Topic
    Copy Method (IntervalBitmap)
    In This Topic
    Copies a range of elements from an IntervalArray starting at the specified source index and pastes them to another IntervalArray starting at the specified target index. The length and the indexes are specified as 32-bit integers.
    Syntax
    'Declaration
     
    
    Public Shared Sub Copy( _
       ByVal source As IntervalBitmap, _
       ByVal sourceIndex As Integer, _
       ByVal target As IntervalBitmap, _
       ByVal targetIndex As Integer, _
       ByVal length As Integer _
    ) 
    'Usage
     
    
    Dim source As IntervalBitmap
    Dim sourceIndex As Integer
    Dim target As IntervalBitmap
    Dim targetIndex As Integer
    Dim length As Integer
     
    IntervalBitmap.Copy(source, sourceIndex, target, targetIndex, length)

    Parameters

    source
    The IntervalArray that contains the data to copy.
    sourceIndex
    A 32-bit integer that represents the index in the source at which copying begins.
    target
    The IntervalArray that receives the data.
    targetIndex
    A 32-bit integer that represents the index in the target at which storing begins.
    length
    A 32-bit integer that represents the number of elements to copy.
    See Also