Solid Edge Framework Type Library
Item Method
Variant (input) index.
Description
The items in a collection.
Syntax
Visual Basic
Public Function Item( _
   ByVal Index As Variant _
) As Layer
Parameters
Index
Variant (input) index.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objLayers As SolidEdgeFramework.Layers
    Dim objLayer1 As SolidEdgeFramework.Layer
    Dim objLayer2 As SolidEdgeFramework.Layer
    ' 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.DraftDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    'getting the Active Sheet object
    Set objSheet = objDoc.ActiveSheet
    ' Add a layer
    Set objLayers = objSheet.Layers
    Set objLayer1 = objLayers.Add(Name:="Test")
    ' Assign the new Layer object to another object using Item method
    Set objLayer2 = objLayers.Item(Index:=2)
    ' USER DISPLAY
    If Not objLayer2 Is objLayer1 Then
        MsgBox ("Error in the Item method")
    End If
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objLayers = Nothing
    Set objLayer1 = Nothing
    Set objLayer2 = Nothing
End Sub
See Also

Layers Collection  | Layers Members