COMSafeArray.IsResizable

Syntax:

IsResizable()

Returned value:

Type: Boolean.
True means the array's lower boundary and the number of elements in the first dimension may be changed; otherwise it is False.

Description:

Checks whether you can change the array dimensions.

Availability:

Server, thick client, external connection.

Example:

PossibleToChange = Array.IsResizable();
If 
PossibleToChange Then
    Array.Resize(0, 10);
EndIf
;


    

1C:Enterprise Developer's Community