Solid Edge Geometry Type Library
GetParamExtents Method
Returns the parameter associated with the start point of the curve.
Returns the parameter associated with the end point of the curve.
Description
Returns the parametric extents of the curve.
Syntax
Visual Basic
Public Sub GetParamExtents( _
   ByRef MinParam As Double, _
   ByRef MaxParam As Double _
) 
Parameters
MinParam
Returns the parameter associated with the start point of the curve.
MaxParam
Returns the parameter associated with the end point of the curve.
Remarks
This is the parametric equivalent of the endpoints.
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 dblMinParam As Double
    Dim dblMaxParam 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 form the collection of edges of the body object
    Set objEdge = objBody.Edges(EdgeType:=igQueryAll).Item(1)
    ' getting the extents of the parameters on an edge
    Call objEdge.GetParamExtents(MinParam:=dblMinParam, MaxParam:=dblMaxParam)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objBody = Nothing
    Set objEdge = Nothing
End Sub
See Also

Edge Object  | Edge Members