SizeOf

InstallShield 2020 ยป InstallScript Language Reference

The SizeOf function retrieves the number of elements in an InstallScript array, or the size of a variable passed as an argument.

To determine the number of characters in the value of a string variable, use StrLength.

Syntax

SizeOf ( Item );

Parameters

SizeOf Parameters

Parameter

Description

Item

Specifies the name of the variable.

Return Values

SizeOf returns the number of elements in an array, or the size of a variable passed as an argument.

See Also