2.17.5 Item


Description

Syntax

VB: Property Get Item(Index As ByVal Object ) As Folder
C++: Folder Item(_variant_t Index )
C#: Folder Item(var Index )

Parameters

Index
--

Remark

Examples

VB

    Sub Folders_Item()
        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.Name.ToString())
    End Sub

Version Information

8.0SR2

See Also