Solid Edge Framework Type Library
Delete Method
Description
Deletes the referenced object.
Syntax
Visual Basic
Public Sub Delete() 
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objLayer1 As SolidEdgeFramework.Layer
    Dim objLayer2 As SolidEdgeFramework.Layer
    Dim objLayers As SolidEdgeFramework.Layers
    ' 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
    ' Create 2 new Layers
    Set objLayers = objSheet.Layers
    Set objLayer1 = objLayers.Add(Name:="Test1")
    Set objLayer2 = objLayers.Add(Name:="Test2")
    ' Delete the 1st created Layer
    Call objLayer1.Delete
    ' USER DISPLAY
    If objLayers.Count <> 2 Then
        MsgBox ("Error in the Delete method")
    End If
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objLayer1 = Nothing
    Set objLayer2 = Nothing
    Set objLayers = Nothing
End Sub
See Also

Layer Object  | Layer Members

Send comments on this topic.