Solid Edge FrameworkSupport Type Library
BringForward Method
Description
Changes the display order of the referenced object by moving it in front of the first object that obscures it.
Syntax
Visual Basic
Public Sub BringForward() 
Remarks
This command is useful when other objects that are filled hide an object and the user wants to remove the object from hiding while not bringing the object to the top of the priority list.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objCenterMarks As SolidEdgeFrameworkSupport.CenterMarks
    Dim objCenterMark As SolidEdgeFrameworkSupport.CenterMark
    Dim objLine As SolidEdgeFrameworkSupport.Line2d
    Dim objCirc As SolidEdgeFrameworkSupport.Circle2d
    Dim lngZorder1 As Long, lngZorder2 As Long
    ' 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
    ' Get the CenterMarks collection object on the active sheet
    Set objCenterMarks = objSheet.CenterMarks
    ' Create a CenterMark on the active sheet
    Set objCenterMark = objCenterMarks.Add(x:=0.25, y:=0.25, z:=0)
    ' Get the Zorder
    lngZorder1 = objCenterMark.ZOrder
    ' Create a line objcet
    Set objLine = objSheet.Lines2d.AddBy2Points(x1:=0.2, y1:=0.25, x2:=0.4, y2:=0.25)
    ' Create a circle object
    Set objCirc = objSheet.Circles2d.AddByCenterRadius(x:=0.25, y:=0.25, Radius:=0.06)
    ' Apply BringForward method to CenterMark object
    Call objCenterMark.BringForward
    ' Get the Zorder
    lngZorder2 = objCenterMark.ZOrder
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objCenterMarks = Nothing
    Set objCenterMark = Nothing
    Set objLine = Nothing
    Set objCirc = Nothing
End Sub
See Also

CenterMark Object  | CenterMark Members