Solid Edge Geometry Type Library
GetParamRange Method
Returns the minimum u,v point of the range.
Returns the maximum u,v point of the range.
Description
Returns the parametric extents in the U, V space of the surface within which all its boundaries lie.
Syntax
Visual Basic
Public Sub GetParamRange( _
   ByRef MinParam() As Double, _
   ByRef MaxParam() As Double _
) 
Parameters
MinParam
Returns the minimum u,v point of the range.
MaxParam
Returns the maximum u,v point of the range.
Example
Private Sub Form_Load()
    Dim objApp As solidedgeframework.Application
    Dim objDoc As SolidEdgepart.PartDocument
    Dim objBody As solidedgegeometry.Body
    Dim objFace As solidedgegeometry.Face
    Dim dblMin() As Double
    Dim dblMax() As Double
    Const TESTFILE = "T:\vbtests\testcases\HalfCyl.par"
    ' 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
    Call objDoc.Close
    ' opening the testfile
    Set objDoc = objApp.Documents.Open(TESTFILE)
    ' getting the body object of the model
    Set objBody = objDoc.Models(1).Body
    ' getting a particular face from the collection of faces on the body
    Set objFace = objBody.Faces(FaceType:=igQueryAll).Item(2)
    ' getting the parameter range data for a Face
    Call objFace.GetParamRange(MinParam:=dblMin, MaxParam:=dblMax)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objBody = Nothing
    Set objFace = Nothing
End Sub
See Also

Face Object  | Face Members