Solid Edge Geometry Type Library
Item Method
Variant (input) index.
Description
The items in a collection.
Syntax
Visual Basic
Public Function Item( _
   ByVal index As Variant _
) As Object
Parameters
index
Variant (input) index.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeframework.Application
    Dim objDoc As SolidEdgePart.PartDocument
    Dim objBody As solidedgegeometry.Body
    Dim objshells As Object
    Dim objSItem As solidedgegeometry.Shell
    Const TESTFILE = "T:\vbtests\testcases\freeform.par"
    ' Report errors
    Const PI = 3.14159265358979
    ' Create/get the application with specific settings
    On Error Resume Next
    Set objApp = GetObject(, "SolidEdge.Application")
    If Err Then
        Err.Clear
        Set objApp = CreateObject("SolidEdge.Application")
        Set objDoc = objApp.Documents.Add("SolidEdge.PartDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    Call objDoc.Close
    ' opening the test case file
    Set objDoc = objApp.Documents.Open(TESTFILE)
    ' getting the body object of the extruded protrusion feature
    Set objBody = objDoc.Models(1).Body
    ' getting the collection of shells on the body object
    Set objshells = objBody.Shells
    ' getting a particular shell from the shells collection
    Set objSItem = objshells.Item(1)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objBody = Nothing
    Set objshells = Nothing
    Set objSItem = Nothing
End Sub
See Also

Shells Collection  | Shells Members