Solid Edge Geometry Type Library
Geometry Property
Description
Returns a 3-D geometry object whose properties and methods can extend to the topology collection.
Property type
Read-only property
Syntax
Visual Basic
Public Property Geometry As Object
Remarks
The returned object depends on the basic wireframe geometry of the curve, edge, or face. For example, if the topology collection contains a face that is a cone, the methods and properties for the Cone 3-D geometry object can extend to the topology collection. The object type returned through the Geometry property can be determined by the GeometryType property. The Geometry property is extended to the Curves, Edges, Faces, or FacesByRay property of the object whose curves, faces, or edges comprise the topology collection. To use the extended methods and properties for the Geometry property, the Topology collection object must consist of a single face or edge.
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 objGeom As SolidEdgeGeometry.Circle
    ' 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 from the collection of edges of the body
    Set objEdge = objBody.Edges(EdgeType:=igQueryAll).Item(2)
    ' getting the geometry object of the edge
    Set objGeom = objEdge.Geometry
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objBody = Nothing
    Set objEdge = Nothing
    Set objGeom = Nothing
End Sub
See Also

Edge Object  | Edge Members