VintaSoft Imaging .NET SDK 12.3: Documentation for .NET developer
Vintasoft.Imaging Namespace / ImageCollection Class / MoveRange(Int32,Int32[]) Method
Syntax Requirements SeeAlso
In This Topic
    MoveRange(Int32,Int32[]) Method (ImageCollection)
    In This Topic
    Removes images at specified indexes and inserts them at specified index.
    Syntax
    'Declaration
    
    Public Function MoveRange( _
    ByVal insertIndex
    The zero-based index at which the images should be inserted.
    As System.Int32, _
    ByVal ParamArray indexes
    An array that contains indexes of images that must be moved.
    () As System.Int32 _
    ) As System.Int32
    public System.Int32 MoveRange(
    System.Int32 insertIndex,
    params System.Int32[] indexes
    )
    public: System.Int32 MoveRange(
    System.Int32 insertIndex,
    params System.Int32[]* indexes
    )
    public:
    System.Int32 MoveRange(
    System.Int32 insertIndex,
    ... array<System.Int32>^ indexes
    )

    Parameters

    insertIndex
    The zero-based index at which the images should be inserted.
    indexes
    An array that contains indexes of images that must be moved.

    Return Value

    The zero-based index at which the images has been inserted.
    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also