Solid Edge FrameworkSupport Type Library
SetCenter Method
The non-linear object to which the center mark associates.
Specifies the coordinates of the locate point of the CenterObj. This point is used as a proximity point while calculating the key point.
Specifies the coordinates of the locate point of the CenterObj. This point is used as a proximity point while calculating the key point.
Specifies the coordinates of the locate point of the CenterObj. This point is used as a proximity point while calculating the key point.
Specifies whether the CenterObj or a key point of the object is to be used. If True, the object is selected; if False, the nearest key point is selected.
Description
Specifies a new location for a CenterMark or DatumPoint object.
Syntax
Visual Basic
Public Sub SetCenter( _
   ByVal CenterObj As Object, _
   ByVal x As Double, _
   ByVal y As Double, _
   ByVal z As Double, _
   ByVal keyPoint As Boolean _
) 
Parameters
CenterObj
The non-linear object to which the center mark associates.
x
Specifies the coordinates of the locate point of the CenterObj. This point is used as a proximity point while calculating the key point.
y
Specifies the coordinates of the locate point of the CenterObj. This point is used as a proximity point while calculating the key point.
z
Specifies the coordinates of the locate point of the CenterObj. This point is used as a proximity point while calculating the key point.
keyPoint
Specifies whether the CenterObj or a key point of the object is to be used. If True, the object is selected; if False, the nearest key point is selected.
Remarks
This new location can be an object or a key point on that object. If the object is placed with respect to a key point, the point of reference is the key point.
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 objCenter As Object
    Dim dblX As Double, dblY As Double, dblZ As Double
    Dim bFlag As Boolean
    ' 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
    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)
    ' Create a line objcet
    Set objLine = objSheet.Lines2d.AddBy2Points(x1:=0.1, y1:=0.1, x2:=0.2, y2:=0.1)
    ' Set the center
    Call objCenterMark.SetCenter(CenterObj:=objLine, x:=0.5, y:=0.5, z:=0, Keypoint:=True)
    ' Get the center
    Call objCenterMark.GetCenter(CenterObj:=objCenter, x:=dblX, y:=dblY, z:=dblZ, Keypoint:=bFlag)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objLine = Nothing
    Set objCenterMarks = Nothing
    Set objCenterMark = Nothing
End Sub
See Also

CenterMark Object  | CenterMark Members

Send comments on this topic.