Description

Returns a Procedure object as specified by the given name, GUID,or ID. PARAMETERS: Identifier (String or Integer).

Property Type

  • Read-only property

Syntax

Public Property Item( _
   ByVal Identifier As Variant _
) As Procedure

Parameters

  • Identifier

Example

Dim MyModel As Model

Dim MyProc As Procedure

Dim ProcID As Integer


' We want the procedure with 2 as the ID

ProcID = 2


Set MyProc = MyModel.Procedures.Item(ProcID)