Solid Edge FrameworkSupport Type Library
Layer Property
Description
Sets and returns the named layer on which the referenced object resides.
Property type
Read-write property
Syntax
Visual Basic
Public Property Layer As String
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objLines2d As SolidEdgeFrameworkSupport.Lines2d
    Dim objLine1 As SolidEdgeFrameworkSupport.Line2d
    Dim strDfltlayer As String
    Dim strLay1 As String
    ' 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
    ' getting the lines2d collection object
    Set objLines2d = objSheet.Lines2d
    ' Create Line2d object using AddBy2Points method
    Set objLine1 = objLines2d.AddBy2Points(x1:=0.05, y1:=0.05, x2:=0.1, y2:=0.05)
    'get the layer property of the line2d object
    strDfltlayer = objLine1.Layer
    Call objSheet.Layers.Add("Testing")
    'Set the line2d to new Layer
    objLine1.Layer = "Testing"
    'get the Layer Property
    strLay1 = objLine1.Layer
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objLines2d = Nothing
    Set objLine1 = Nothing
End Sub
See Also

Line2d Object  | Line2d Members