FilePaths Interface - FilePath Property
Path of the file
Member of FilePaths Interface (PRIM_APPL.IDragDropFilePaths)
Data Type - String
Parameters
Name | Type | Data Type | Description |
|---|---|---|---|
Index | *Input | Integer | Index parameter |
Details
The FilePath property is a keyed property providing access to the path of each file.
Example
This example loops through the payload, accessing each of the FilePaths using the index.
Evtroutine Handling(#Files.DragDrop) Payload(#Payload)
Define_Com Class(#Prim_nmbr) Name(#Index)
If (#Payload *Is #Prim_Appl.IDragDropFilePaths)
Begin_Loop To((#Payload *As #Prim_Appl.IDragDropFilePaths).FileCount)
#Index += 1
#Com_owner.Save((#Payload *As #Prim_Appl.IDragDropFilePaths).FilePath<#Index>)
End_Loop
Endif
Endroutine