ISWiSequenceRecord Object

InstallShield 2016 » Automation Interface

Project • This information applies to the following project types:

Basic MSI
InstallScript MSI

ISWiSequenceRecord represents an action in the Custom Actions and Sequences view of the InstallShield user interface.

Members

ISWiSequenceRecord Object Members

Name

Type

Description

Name

Read-Write Property

Holds the string name of the specified action.

Comment

Read-Write Property

Gets or sets comments for the specified action.

Condition

Read-Write Property

Gets or sets the condition for the specified action.

Sequence

Read-Write Property

Gets or sets the sequence number for the specified action.

Example

The following VBScript code displays the sequence number of the LaunchConditions action in the project's Installation User Interface sequence.

    Set oISM = CreateObject("IswiAutoAutomation Interface Version.ISWiProject")

 

    oISM.OpenProject "C:\MySetups\MyProject.ism", True ' open read-only

 

    Set oSequenceRecord = oISM.InstallUISequence("LaunchConditions")

 

    MsgBox "LaunchConditions is at sequence number " & oSequenceRecord.Sequence

 

    oISM.CloseProject

Applies To

ISWiSequence