Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objFCFs As SolidEdgeFrameworkSupport.FeatureControlFrames
    Dim objFCF As SolidEdgeFrameworkSupport.FeatureControlFrame
    ' Local variables to be declared here
    Dim lngZorder As Long
    ' 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
    On Error GoTo 0
    'Get the Active Sheet object
    Set objSheet = objDoc.ActiveSheet
    'Draw few lines prior to the FeatureControlFrame
    Call objSheet.Lines2d.AddBy2Points(x1:=0.125, y1:=0.1, x2:=0.275, y2:=0.25)
    Call objSheet.Lines2d.AddBy2Points(x1:=0.2, y1:=0.25, x2:=0.3, y2:=0.125)
    'Get the FeatureControlFrames collection object
    Set objFCFs = objSheet.FeatureControlFrames
    'Add a new FeatureControlFrame
    Set objFCF = objFCFs.Add(x:=0.1, y:=0.1, z:=0)
    objFCF.PrimaryFrame = "FLVB0.001MCVBA"
    Call objFCF.AddVertex(x:=0.2, y:=0.2, z:=0)
    objFCF.BreakLine = True
    'Get the Zorder of the FeatureControlFrame
    lngZorder = objFCF.ZOrder
    'Place the FCF back of the second Line
    Call objFCF.SendBackward
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objFCFs = Nothing
    Set objFCF = Nothing
End Sub