Solid Edge Geometry Type Library
GetRange Method
Specifies the minimum point of the range.
Specifies the maximum point of the range.
Description
Returns the minimum and maximum points of the range for the referenced object.
Syntax
Visual Basic
Public Sub GetRange( _
   ByRef MinRangePoint() As Double, _
   ByRef MaxRangePoint() As Double _
) 
Parameters
MinRangePoint
Specifies the minimum point of the range.
MaxRangePoint
Specifies the maximum point of the range.
Remarks
The GetRange method returns a box that bounds the specified element. The edges of the box are parallel to the axes of the global coordinate system.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeframework.Application
    Dim objDoc As SolidEdgepart.PartDocument
    Dim objBody As solidedgegeometry.Body
    Dim objFaces As Object
    Dim objLoops As Object
    Dim dblMinRangePoint() As Double
    Dim dblMaxRangePoint() As Double
    Const TESTFILE = "T:\vbtests\testcases\freeform.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
    ' opening the test case file
    Set objDoc = objApp.Documents.Open(TESTFILE)
    ' geting the body object from the model
    Set objBody = objDoc.Models(1).Body
    ' getting the collection of faces from the body object
    Set objFaces = objBody.Faces(facetype:=igQueryAll)
    ' getting a loop from the collection of loops for a particular face
    Set objLoops = objFaces(1).Loops
    ' getting the range values for a loop
    Call objLoops(1).GetRange(minRangepoint:=dblMinRangePoint, MaxRangePoint:=dblMaxRangePoint)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objBody = Nothing
    Set objFaces = Nothing
    Set objLoops = Nothing
End Sub
See Also

Loop Object  | Loop Members