2.37.3 Item


Description

Get a page from the collection

Syntax

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

Parameters

Index
--

Remark

Examples

VB

    Sub PageBasesItem()
        Dim app As Origin.IOApplication
        Dim pg As Origin.PageBase

        app = New Origin.ApplicationSI
        pg = app.PageBases.Item(0) ' get the first page
        MsgBox(pg.LongName)
    End Sub

Version Information

8.0SR2

See Also