2.16.1 Path


Description

Syntax

VB: Property Get Path As String
C++: LPCSTR Path
C#: string Path

Parameters

Remark

Examples

VB

    Sub Folder_Path()
        Dim app As Origin.IOApplication
        Dim fds As Origin.Folders
        Dim fd As Origin.Folder

        app = New Origin.ApplicationSI
        fds = app.RootFolder.Folders

        fd = fds.Item(0) 'get the first sub folder
        MsgBox(fd.Path.ToString())
    End Sub

Version Information

8.0SR2

See Also