![]()
|
InstallShield 2008 ยป Automation Interface
Project
The ISWiSetupFiles collection applies to the following project types.
ISWiSetupFiles is a collection that contains every support file (as an ISWiSetupFile object) in your project. For example, the following Visual Basic code illustrates how you would set a property for a specific support file:
Dim pProj As ISWiProject
Set pProj = CreateObject("IswiAuto14.ISWiProject")
pProj.OpenProject "C:\MySetups\Project1.ism"
pProj.ISWiSetupFiles(1).Splash = True
pProj.SaveProject
pProj.CloseProject
| Name |
Type |
Description |
|---|---|---|
| Count |
Read-Only Property |
Use this property to return the total number of support files in the ISWiSetupFiles collection. |
| Item |
Read-Only Property |
Provide the index number or name of the support file to retrieve the ISWiSetupFile object. For example, the following statements create references to the first support file in the collection and the support file named MySupportFile.bmp: Set pSetupFile1 = pProj.ISWiSetupFiles.Item(1) Set pSetupFile2 = pProj.ISWiSetupFiles.Item("MySupportFile.bmp ") Item is the default property for ISWiSetupFiles, which means that pProj.ISWiSetupFiles.Item("MySupportFile.bmp") is equivalent to pProj.ISWiSetupFiles("MySupportFile.bmp"). |
|
|
Copyright Information | Contact Macrovision |