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.
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 dblMinRPoint() As Double
    Dim dblMaxRPoint() 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 range values for an edge
    Call objEdge.GetRange(MinRangePoint:=dblMinRPoint, MaxRangePoint:=dblMaxRPoint)
    ' 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.