ExportCollection method (WinStudio scripts)
Applies To
IWSIDOCollection interface
Definition
Exports the contents of a designated IDO collection to a file.
Parallels the menu option .
Syntax
object.ExportCollection( Boolean1, string, Boolean2 )
| Part | Description | 
| object | Required. A reference to an IDO collection. | 
| Boolean1 | Required.
                                       					 Boolean value that indicates: 
 | 
| string | Required. The
                                       					 path and name of the output file. If you do not specify a full path, the path is relative to the file in which WinStudio.exe is installed. This method does not create directories. | 
| Boolean2 | Required.
                                       					 Boolean value that indicates: 
 | 
Example
Sub Main()
    ThisForm.PrimaryIDOCollection.ExportCollection(False, "c:\mytemp\Export.csv", False)
End Sub