Solid Edge FrameworkSupport Type Library
Range Method
Specifies the x coordinate of the lower-left corner the referenced object.
Specifies the y coordinate of the lower-left corner of the referenced object.
Specifies the x coordinate of the upper-right corner of the referenced object.
Specifies the y coordinate of the upper-right corner of the referenced object.
Description
Returns the high and low range values for the referenced object.
Syntax
Visual Basic
Public Sub Range( _
   ByRef XMinimum As Double, _
   ByRef YMinimum As Double, _
   ByRef XMaximum As Double, _
   ByRef YMaximum As Double _
) 
Parameters
XMinimum
Specifies the x coordinate of the lower-left corner the referenced object.
YMinimum
Specifies the y coordinate of the lower-left corner of the referenced object.
XMaximum
Specifies the x coordinate of the upper-right corner of the referenced object.
YMaximum
Specifies the y coordinate of the upper-right corner of the referenced object.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objArc As SolidEdgeFrameworkSupport.Arc2d
    Dim objDim As SolidEdgeFrameworkSupport.Dimension
    Dim dblx1 As Double, dbly1 As Double, dblX2 As Double, dblY2 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.DraftDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    'getting the Active Sheet object
    Set objSheet = objDoc.ActiveSheet
    'create an arc2d
    Set objArc = objSheet.Arcs2d.AddByCenterStartEnd(xCenter:=0.2, yCenter:=0.2, _
                                                     xStart:=0.1, yStart:=0.1, xEnd:=0.3, yEnd:=0.3)
    'create a dimension
    Set objDim = objSheet.Dimensions.AddRadius(Object:=objArc)
    'get the range
    Call objDim.Range(XMinimum:=dblx1, YMinimum:=dbly1, XMaximum:=dblX2, YMaximum:=dblY2)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objArc = Nothing
    Set objDim = Nothing
End Sub
See Also

Dimension Object  | Dimension Members