SecureBlackbox

200+ components and classes for all aspects of digital security of your data

Filter: C#/Java  VB.NET  Pascal  ActiveX  C++ 


TElArrayConverter.VariantArrayMoveBlock

TElArrayConverter     See also    


 

Moves elements inside the array.

   

Declaration

[C#/Java]
    not applicable;

[VB.NET]
    not applicable;

[Pascal]
    not applicable;

[VB6]
    Function IElArrayConverterX.VariantArrayMoveBlock(InArray As Variant, BlockSize As Long, OldPos As Long, NewPos As Long) As Variant

[ActiveX]
    HRESULT _stdcall IElArrayConverterX.VariantArrayMoveBlock([in] VARIANT InArray, [in] long BlockSize, [in] long OldPos, [in] long NewPos, [out, retval] VARIANT * Result );

[C++]
    not implemented;

   

Parameters

  • InArray - array which elements to be moved
  • BlockSize - size of the block of elements to be moved
  • OldPos - current position of the block beginning
  • NewPos - new position of the block beginning
   

Return value

    Array with moved block.

   

Description

    Use this method when you want to move block inside the array.

     
Back to top