SecureBlackbox

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

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


TElArrayConverter.VariantArrayRedim

TElArrayConverter     See also    


 

Changes array size.

   

Declaration

[C#/Java]
    not applicable;

[VB.NET]
    not applicable;

[Pascal]
    not applicable;

[VB6]
    Function IElArrayConverterX.VariantArrayRedim(InArray As Variant, NewSize As Long) As Variant

[ActiveX]
    HRESULT _stdcall IElArrayConverterX.VariantArrayRedim([in] VARIANT InArray, [in] long NewSize, [out, retval] VARIANT * Result );

[C++]
    not implemented;

   

Parameters

  • InArray - array which size to be changed
  • NewSize - new size of the array
   

Return value

    Array of the new size.

   

Description

    Use this method when you want to change array size.

     
Back to top