Solid Edge FrameworkSupport Type Library
SetStartPoint Method
Specifies the new coordinates of the start point.
Specifies the new coordinates of the start point.
Specifies the new coordinates of the start point.
Description
Relocates the starting point of the referenced object.
Syntax
Visual Basic
Public Sub SetStartPoint( _
   ByVal x As Double, _
   ByVal y As Double, _
   ByVal z As Double _
) 
Parameters
x
Specifies the new coordinates of the start point.
y
Specifies the new coordinates of the start point.
z
Specifies the new coordinates of the start point.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objCenterLines As SolidEdgeFrameworkSupport.CenterLines
    Dim objCenterLine As SolidEdgeFrameworkSupport.CenterLine
    Dim dblX As Double, dblY As Double, dblZ As Double
    ' 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 CenterLines object on the active sheet
    Set objCenterLines = objSheet.CenterLines

    ' Draw a CenterLine on the active sheet
    Set objCenterLine = objCenterLines.Add(x1:=0.25, y1:=0.15, z1:=0, _
                                           x2:=0.25, y2:=0.35, z2:=0)
    ' Change the StartPoint
    Call objCenterLine.SetStartPoint(x:=0.1, y:=0.05, z:=0)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objCenterLines = Nothing
    Set objCenterLine = Nothing
End Sub
See Also

CenterLine Object  | CenterLine Members

Send comments on this topic.