FeatureSetupTypeEnum

InstallShield 2014 » InstallScript Language Reference

Project: This information applies to the following project types:

InstallScript
InstallScript MSI

The FeatureSetupTypeEnum function enumerates all setup types associated with the specified media. These setup types are defined by you in the IDE and stored in the file media. You must create the listSetupTypes string list using the ListCreate function.

Note: This function cannot be used with script-created feature sets.

Syntax

FeatureSetupTypeEnum ( szFeatureSource, listSetupTypes );

Parameters

FeatureSetupTypeEnum Parameters

Parameter

Description

szFeatureSource

Specifies the media name of the file media whose setup types are to be enumerated.

listSetupTypes

Returns a list of all setup types in the specified media. The string list identified by listSetupTypes must already have been initialized by a call to ListCreate.

Return Values

FeatureSetupTypeEnum Return Values

Return Value

Description

0

FeatureSetupTypeEnum was successful.

< 0

FeatureSetupTypeEnum failed.

See Also