Solid Edge Geometry Type Library
GetEndPoints Method
Returns the start point of the referenced object.
Returns the end point of the referenced object.
Description
Returns the start and end points of the referenced object.
Syntax
Visual Basic
Public Sub GetEndPoints( _
   ByRef StartPoint() As Double, _
   ByRef EndPoint() As Double _
) 
Parameters
StartPoint
Returns the start point of the referenced object.
EndPoint
Returns the end point of the referenced object.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgePart.PartDocument
    Dim objBody As SolidEdgeGeometry.Body
    Dim objEdge As SolidEdgeGeometry.Edge
    Dim dblStartPoint() As Double
    Dim dblEndPoint() 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.PartDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    ' creating the base feature
    If CreateModel(objDoc) <> "" Then
        MsgBox "Error creating the model"
        Exit Sub
    End If
    ' getting the body object of the model
    Set objBody = objDoc.Models(1).Body
    'getting an edge from the colleciton of edges of the body
    Set objEdge = objBody.Edges(EdgeType:=igQueryAll).Item(2)
    ' getting the end points of an edge
    Call objEdge.GetEndPoints(StartPoint:=dblStartPoint, EndPoint:=dblEndPoint)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objBody = Nothing
    Set objEdge = Nothing
End Sub
See Also

Edge Object  | Edge Members

Send comments on this topic.