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 how the output is to be delimited: 
              
  | 
            
| 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 whether record caps are to be ignored or honored: 
              
  | 
            
Example
Sub Main()
    ThisForm.PrimaryIDOCollection.ExportCollection(False, "c:\mytemp\Export.csv", False)
End Sub